Skip to content

Commit

Permalink
update actions, test against more node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fergiemcdowall committed Jun 13, 2023
1 parent 7b2a8ba commit 01906b9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ on:
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18, 20]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: ${{ matrix.node-version }}
- run: npm install
- run: sudo apt-get install xvfb
- run: xvfb-run --auto-servernum npm test

0 comments on commit 01906b9

Please sign in to comment.