Skip to content

Commit

Permalink
Node engine should be version 18 or later for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SnaBe committed Apr 7, 2024
1 parent e18f7d1 commit 1fc1ce1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x, 18.x ]
node-version: [ 18.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ Version [2.0.0](https://github.com/SnaBe/node-unusual-effects/releases/tag/v2.0.

[MIT](LICENSE)

Copyright 2023, Simon Sørensen
Copyright 2024, Simon Sørensen
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = [
"rules": {
"linebreak-style": [
"error",
"windows"
"unix"
],
"quotes": [
"error",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"typescript": "^5.4.4"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
}
}

0 comments on commit 1fc1ce1

Please sign in to comment.