ci(action): update peter-evans/create-or-update-comment action to v5 #2414
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@v5 | |
- uses: actions/setup-node@v5 | |
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@v5 | |
- uses: actions/setup-node@v5 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: npm | |
- run: npm ci | |
- run: npm test | |
test-deno: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- 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@v5 | |
- uses: oven-sh/setup-bun@v2 | |
- run: bun install | |
- run: bun test | |
validate-typescript: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-node@v5 | |
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() }} |