Bump vitest from 4.0.15 to 4.0.17 #12
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: Tests | |
| on: | |
| workflow_dispatch: # Adds the Web trigger | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-slim | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: make deps | |
| - name: Run tests | |
| # - Runs the tests | |
| # - Checks for TypeScript warnings | |
| # - Confirms that dist/index.js is current | |
| run: make test |