build(deps): bump vite from 7.1.3 to 7.1.6 #2407
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: Test | |
| on: | |
| push: | |
| branches: | |
| - dependabot/npm_and_yarn/** | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| jobs: | |
| test-building: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| node-version: lts/* | |
| - run: npm ci | |
| - run: npm run build | |
| test_matrix: | |
| needs: test-building | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node_version: | |
| - 20 | |
| - 22 | |
| - 24 | |
| name: Node ${{ matrix.node_version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node_version }} | |
| cache: npm | |
| - run: npm ci | |
| - run: npm test | |
| test-deno: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.x # Run with latest stable Deno. | |
| - run: deno install | |
| - run: deno test --allow-env --allow-read --allow-net --allow-sys --no-check | |
| test-bun: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install | |
| - run: bun test | |
| validate-typescript: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| node-version: lts/* | |
| - run: npm ci | |
| - run: npm run validate:ts | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - test-bun | |
| - test_matrix | |
| - test-deno | |
| - validate-typescript | |
| steps: | |
| - run: exit 1 | |
| if: ${{ needs.test_matrix.result != 'success' || needs.test-bun.result != 'success' || needs.test-deno.result != 'success' }} | |
| if: ${{ always() }} |