File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 57
57
${{ runner.os }}-node-${{ matrix.node }}
58
58
59
59
# for this workflow we also require npm audit to pass
60
- - run : npm ci
60
+ - run : npm i
61
61
- run : npm run test:coverage
62
62
63
63
# with the following action we enforce PRs to have a high coverage
@@ -110,7 +110,7 @@ jobs:
110
110
# we just cloned and install it as local dependency
111
111
- run : |
112
112
cd github/testing/express
113
- npm ci
113
+ npm i
114
114
npm install ../../../
115
115
npm run test
116
116
@@ -125,7 +125,7 @@ jobs:
125
125
with :
126
126
node-version : 12
127
127
registry-url : https://registry.npmjs.org/
128
- - run : npm ci
128
+ - run : npm i
129
129
- run : npm publish --dry-run
130
130
env :
131
131
NODE_AUTH_TOKEN : ${{secrets.npm_token}}
@@ -143,7 +143,7 @@ jobs:
143
143
# we always publish targeting the lowest supported node version
144
144
node-version : 12
145
145
registry-url : $registry-url(npm)
146
- - run : npm ci
146
+ - run : npm i
147
147
- run : npm publish --dry-run
148
148
env :
149
149
NODE_AUTH_TOKEN : ${{secrets.GITHUB_TOKEN}}
Original file line number Diff line number Diff line change 35
35
key : ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
36
36
restore-keys : |
37
37
${{ runner.os }}-node-${{ matrix.node }}
38
- - run : npm ci
38
+ - run : npm i
39
39
- run : npm run test:coverage
40
40
41
41
# with the following action we enforce PRs to have a high coverage
You can’t perform that action at this time.
0 commit comments