chore(deps-dev): bump @vitest/coverage-v8 from 4.0.5 to 4.0.6 #583
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: Build & test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| test: | |
| name: Test | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| node-version: [^20.19, ^22.12, ^24] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - name: Npm install | |
| run: npm ci | |
| - name: Transpile | |
| run: npm run build | |
| - name: Lint and run tests | |
| run: npm run test | |
| - name: Pack | |
| run: npm pack | |
| - name: Check package exports | |
| run: npx publint | |
| - name: Check dependencies exports | |
| run: npx publint deps --prod |