Skip to content

Commit 7f9c4d3

Browse files
committed
fix: bump required node version to 12.13.0
1 parent 4fd2fec commit 7f9c4d3

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
12-
- uses: actions/setup-node@v1
11+
- uses: actions/checkout@v2
12+
- name: Use Node.js 12.13.1
13+
uses: actions/setup-node@v1
14+
with:
15+
node-version: 12.13.1
1316
- run: yarn --frozen-lockfile
1417
- run: yarn build
1518
- run: yarn lint

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@
5252
"typescript": "^3.9.6"
5353
},
5454
"engines": {
55-
"node": ">=10"
55+
"node": ">=12.13.0"
5656
}
5757
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@ark120202/typescript-config/node/10.json",
2+
"extends": "@ark120202/typescript-config/node/12.json",
33
"include": ["src"],
44
"compilerOptions": {
55
"rootDir": "./src",

0 commit comments

Comments
 (0)