Skip to content

Commit

Permalink
Raise minimum Node.js version to v18
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Nov 5, 2023
1 parent ce40284 commit b292124
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
fail-fast: false
matrix:
node-version:
- 16
- 18
- 20
- latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand All @@ -30,8 +30,8 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm ci
- name: Build Live Viewer
run: bash scripts/deploy-live-viewer.sh
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"webidl2js": "^17.1.0"
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"scripts": {
"coverage": "jest --coverage",
Expand Down

0 comments on commit b292124

Please sign in to comment.