chore(deps-dev): bump @vitest/coverage-v8 from 1.6.1 to 4.1.10 #40
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: notifications tests | |
| on: | |
| pull_request: | |
| paths: | |
| - 'notifications/**' | |
| - '.github/workflows/notifications-tests.yml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'notifications/**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: notifications | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.0.0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm --filter @iln/notifications run test:coverage | |
| - name: Upload coverage report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: notifications-coverage | |
| path: notifications/coverage |