Skip to content

Commit

Permalink
Add more node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
samizdam committed Nov 25, 2024
1 parent 2dec77b commit 501e84b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,20 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 20
- 21
- 22
- 23
- 24
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test

0 comments on commit 501e84b

Please sign in to comment.