Skip to content

Commit 44feefc

Browse files
authored
chore: support Node 15 (#97)
1 parent a955e07 commit 44feefc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
16-
node-version: [14.x]
16+
node-version: [15.x]
1717
fail-fast: false
1818
steps:
1919
- name: Git checkout
@@ -26,7 +26,7 @@ jobs:
2626
run: npm ci
2727
- name: Linting
2828
run: npm run format:ci
29-
if: "${{ matrix.node-version == '14.x' }}"
29+
if: "${{ matrix.node-version == '15.x' }}"
3030
- name: Tests
3131
run: npm run test:ci
3232
- name: Get test coverage flags

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,6 @@
104104
"nyc": "^15.1.0"
105105
},
106106
"engines": {
107-
"node": ">=14.0.0"
107+
"node": ">=15.0.0"
108108
}
109109
}

0 commit comments

Comments
 (0)