This repository was archived by the owner on May 10, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313 strategy :
1414 matrix :
1515 os : [ubuntu-latest, macOS-latest]
16- node-version : [12.x , 14.x]
16+ node-version : [10.17.0 , 14.x]
1717 exclude :
1818 - os : macOS-latest
19- node-version : 12.x
19+ node-version : 10.17.0
2020 fail-fast : false
2121 steps :
2222 - name : Git checkout
2626 with :
2727 node-version : ${{ matrix.node-version }}
2828 - name : Install dependencies
29- run : npm ci
29+ run : npm install
3030 - name : Tests
3131 run : npm test
Original file line number Diff line number Diff line change 5959 "hooks" : {
6060 "pre-commit" : " prettier --check ."
6161 }
62+ },
63+ "engines" : {
64+ "node" : " >=10.17.0"
6265 }
6366}
Original file line number Diff line number Diff line change @@ -19,9 +19,6 @@ const { NEXT_VERSION } = require("./nextVersion");
1919// run next-on-netlify.
2020
2121class NextAppBuilder {
22- // Name of the app to build. This determines the build path.
23- __appName = null ;
24-
2522 // Set the application name. This determines the build path.
2623 forTest ( testFile ) {
2724 this . __appName = parse ( testFile ) . name ;
You can’t perform that action at this time.
0 commit comments