File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,11 @@ jobs:
27
27
- uses : actions/checkout@v2
28
28
- name : Installing with latest Node.js
29
29
uses : actions/setup-node@v2
30
- if : " ${{ matrix.node-version != '*' }}"
31
30
with :
32
31
node-version : ' *'
33
32
check-latest : true
34
33
- name : NPM Install
35
- run : npm ci
34
+ run : npm install
36
35
- name : Switching to Node.js ${{ matrix.node-version }} to run tests
37
36
uses : actions/setup-node@v2
38
37
if : " ${{ matrix.node-version != '*' }}"
@@ -64,12 +63,11 @@ jobs:
64
63
- uses : actions/checkout@v2
65
64
- name : Installing with latest Node.js
66
65
uses : actions/setup-node@v2
67
- if : " ${{ matrix.node-version != '*' }}"
68
66
with :
69
67
node-version : ' *'
70
68
check-latest : true
71
69
- name : NPM Install
72
- run : npm ci
70
+ run : npm install
73
71
- name : Install Next.js Canary
74
72
run : npm install -D next@canary --legacy-peer-deps
75
73
- name : Switching to Node.js ${{ matrix.node-version }} to run tests
Original file line number Diff line number Diff line change 4
4
"private" : true ,
5
5
"description" : " " ,
6
6
"scripts" : {
7
- "test " : " echo \" Error: no test specified \" && exit 1 "
7
+ "build " : " next build "
8
8
},
9
9
"repository" : {
10
10
"type" : " git" ,
Original file line number Diff line number Diff line change 3
3
"private" : true ,
4
4
"description" : " Run Next.js seamlessly on Netlify" ,
5
5
"scripts" : {
6
- "build:demo" : " next build demos/ default" ,
6
+ "build:demo" : " npm run -w default-demo build " ,
7
7
"cy:open" : " cypress open --config-file cypress/config/all.json" ,
8
8
"dev:demo" : " next dev demos/default" ,
9
9
"format" : " run-s format:check-fix:*" ,
You can’t perform that action at this time.
0 commit comments