Skip to content

Commit

Permalink
BREAKING CHANGE: require node >= 18
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokaiser committed Aug 13, 2024
1 parent 21dcb03 commit cfb9d9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16', '18', '20']
node: ['18', '20', '22']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
],
"license": "MIT",
"engines": {
"node": ">=16"
"node": ">=18"
},
"devDependencies": {
"chai": "^4.3.7",
Expand Down

0 comments on commit cfb9d9f

Please sign in to comment.