Skip to content

Commit

Permalink
ci: update test action to run on node versions 8 - 20
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfranco authored and manuelmhtr committed Oct 13, 2024
1 parent 119d515 commit f7de3e9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 18
node-version: ${{ matrix.node-version }}
cache: 'yarn'

- name: Install dependencies
Expand Down

0 comments on commit f7de3e9

Please sign in to comment.