chore(deps): bump validator from 13.15.20 to 13.15.23 #1654
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Unit Tests | |
| on: | |
| pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| license-check: | |
| name: License Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DevCycleHQ/license-action@main | |
| with: | |
| language: "javascript" | |
| run-tests: | |
| runs-on: ubicloud-standard-4 | |
| strategy: | |
| matrix: | |
| node-version: [22.12] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: corepack enable | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'yarn' | |
| - run: yarn install | |
| - run: yarn build | |
| - name: Check formatting | |
| run: yarn format:check | |
| - run: yarn test:ci |