Skip to content

Commit

Permalink
ci: test against multiple node version
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed May 21, 2024
1 parent 18015ae commit 2a7752b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ env:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ["18", "20", "22"]
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 19
node-version: ${{ matrix.node }}
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
Expand Down

0 comments on commit 2a7752b

Please sign in to comment.