Skip to content

ci(action): update actions/checkout action to v5 #220

ci(action): update actions/checkout action to v5

ci(action): update actions/checkout action to v5 #220

Workflow file for this run

name: Test
"on":
pull_request:
types:
- opened
- synchronize
jobs:
test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 18
- 20
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm test