chore(deps): bump the nitro group across 2 directories with 2 updates #49
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: Test | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/test.yml' | |
| - 'src/**' | |
| - 'package.json' | |
| - 'yarn.lock' | |
| - 'tsconfig*.json' | |
| - 'jest.config.js' | |
| - 'jest.setup.ts' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/test.yml' | |
| - 'src/**' | |
| - 'package.json' | |
| - 'yarn.lock' | |
| - 'tsconfig*.json' | |
| - 'jest.config.js' | |
| - 'jest.setup.ts' | |
| workflow_dispatch: | |
| jobs: | |
| unit-tests: | |
| name: Run unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Run Jest with coverage | |
| run: yarn test:coverage |