Skip to content

Commit

Permalink
use a modern node version
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 committed Mar 10, 2024
1 parent b6bec39 commit 9c077f1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,18 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '21'

- name: Install dependencies
run: npm ci

- name: Compile
run: npm run compile

- name: Run tests
run: xvfb-run -a npm test
if: runner.os == 'Linux'

- name: Run tests
run: npm test
if: runner.os != 'Linux'

0 comments on commit 9c077f1

Please sign in to comment.