chore(deps-dev): bump @types/node from 24.7.1 to 25.0.3 #218
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: Run Tests | |
| on: | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| - reopened | |
| - unlocked | |
| paths: | |
| - "src/**" | |
| - "vitest.config.ts" | |
| - "package.json" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/**" | |
| - "vitest.config.ts" | |
| - "package.json" | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.15.0 | |
| - name: Setup Node 22 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22.18.0" | |
| - uses: extractions/setup-just@v3 | |
| - name: Install dependencies | |
| run: just deps | |
| - name: Run tests | |
| run: just test |