Skip to content

Commit

Permalink
chore: only support nodejs v14+
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support of nodejs v12 and below
  • Loading branch information
3cp committed Jun 6, 2022
1 parent 7803c0d commit abd6151
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 @@ -14,13 +14,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['12', '14', '16']
node_version: ['14', '16', '18']
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- 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 @@ -17,7 +17,7 @@
"au": "bin/aurelia-cli.js"
},
"engines": {
"node": ">=10.12.0"
"node": ">=14.0.0"
},
"scripts": {
"lint": "gulp lint",
Expand Down

0 comments on commit abd6151

Please sign in to comment.