Skip to content

Commit

Permalink
chore(deps): Update required min nodejs version to v18
Browse files Browse the repository at this point in the history
Support for nodejs v16 ended 2023-09-11 https://endoflife.date/nodejs
  • Loading branch information
simonswine committed Feb 21, 2024
1 parent 7dbae7c commit 0d1b530
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup .npmrc file to publish to npm
uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install modules
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
matrix:
os:
- ubuntu-latest
node: [14.x, 16.x, 18.x]
node: [18.x, 20.x, 21.x]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@
"webpack-cli": "^4.8.0"
},
"engines": {
"node": "^12.20.0 || >=14.13.1"
"node": ">=v18"
}
}

0 comments on commit 0d1b530

Please sign in to comment.