Skip to content

Commit f3de55d

Browse files
authored
Merge pull request #83 from balassy/feature/use-npm-ci
Use `npm ci` instead of `npm install` to speed up CI. See issue #76 .
2 parents 5ac73fb + 7587163 commit f3de55d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ node_js:
55
- "8"
66

77
before_install:
8-
- npm install -g npm@5
8+
- npm install -g npm@6
99
- npm install -g serverless
1010
- npm install -g greenkeeper-lockfile@1
1111

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ install:
99
- npm install --global npm@latest
1010
- set PATH=%APPDATA%\npm;%PATH%
1111
- npm install -g serverless
12-
- npm install
12+
- npm ci
1313
- node --version
1414
- npm --version
1515

@@ -25,4 +25,4 @@ artifacts:
2525
- path: .serverless
2626
name: Serverless Package
2727

28-
test: off
28+
test: off

0 commit comments

Comments
 (0)