Skip to content

Commit abd6151

Browse files
committed
chore: only support nodejs v14+
BREAKING CHANGE: drop support of nodejs v12 and below
1 parent 7803c0d commit abd6151

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
node_version: ['12', '14', '16']
17+
node_version: ['14', '16', '18']
1818
os: [ubuntu-latest, windows-latest, macOS-latest]
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- name: Use Node.js ${{ matrix.node_version }}
23-
uses: actions/setup-node@v1
23+
uses: actions/setup-node@v3
2424
with:
2525
node-version: ${{ matrix.node_version }}
2626
- run: npm install

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"au": "bin/aurelia-cli.js"
1818
},
1919
"engines": {
20-
"node": ">=10.12.0"
20+
"node": ">=14.0.0"
2121
},
2222
"scripts": {
2323
"lint": "gulp lint",

0 commit comments

Comments
 (0)