We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6f77ad1 + f67f31f commit 041cb7fCopy full SHA for 041cb7f
.circleci/config.yml
@@ -26,12 +26,26 @@ jobs:
26
# fallback to using the latest cache if no exact match is found
27
- v1-dependencies-
28
29
+ # Print some information
30
+ - run: node --version
31
+ - run: npm --version
32
+
33
+ # Install greenkeeper-lockfile
34
+ - run: sudo npm install -g greenkeeper-lockfile@latest
35
36
+ # Install the dependencies
37
- run: npm install
38
39
+ # Update the lockfile with greenkeeper
40
+ - run: greenkeeper-lockfile-update
41
42
- save_cache:
43
paths:
44
- node_modules
45
key: v1-dependencies-{{ checksum "package.json" }}
46
47
# run tests!
48
- run: npm test
49
50
+ # Upload the lockfile
51
+ - run: greenkeeper-lockfile-upload
0 commit comments