Skip to content

Commit

Permalink
Allow node 22 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
varney authored Dec 6, 2024
1 parent e71ffbd commit 4d68dce
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20
FROM node:22
ADD package.json /app/package.json
RUN cd /app && npm ci
ADD . /app
6 changes: 3 additions & 3 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"Markus Ekholm",
"Ivan Malmberg"
],
"version": "7.0.1",
"version": "8.0.0",
"engines": {
"node": ">=16 <=20"
"node": ">=16 <=22"
},
"scripts": {
"lint": "eslint .",
Expand Down

0 comments on commit 4d68dce

Please sign in to comment.