Skip to content

Commit

Permalink
Breaking: update minimum node version to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
hildjj committed Jun 23, 2023
1 parent 2e87ce4 commit e8a21f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Expand Up @@ -3,7 +3,7 @@ name: Tests
on:
push:
branches:
- '*'
- main
pull_request:
branches: ['*']

Expand All @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 19.x]
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.os }}
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: npm install
- name: Check coding standards
if: matrix.node-version == '18.x' && matrix.os == 'ubuntu-latest'
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
run: npm run lint
- name: Test
run: npm run ci
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -60,6 +60,6 @@
"typescript": "^5.1.3"
},
"engines": {
"node": ">=14"
"node": ">=16"
}
}

0 comments on commit e8a21f1

Please sign in to comment.