Skip to content

Commit

Permalink
test nodejs matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmet committed Jan 22, 2025
1 parent 8f9958e commit 59642df
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,19 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- '20'
- '22'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get update -q
- uses: actions/setup-node@v3
with:
node-version: '20'
node-version: ${{ matrix.node }}
- name: Install Yarn
run: npm install -g yarn
- name: install dependencies
Expand Down

0 comments on commit 59642df

Please sign in to comment.