File tree Expand file tree Collapse file tree 4 files changed +216
-27
lines changed Expand file tree Collapse file tree 4 files changed +216
-27
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: 2
2
2
jobs :
3
3
build :
4
4
docker :
5
- - image : node:10
5
+ - image : circleci/ node:10-browsers
6
6
- image : mongo
7
7
command : mongod
8
8
19
19
- checkout
20
20
- run : git submodule sync && git submodule update --init
21
21
22
- # Global npm dependencies
23
- - restore_cache :
24
- keys :
25
- - generator-angular-fullstack-npm-global-{{ .Branch }}
26
- - generator-angular-fullstack-npm-global-
27
- - run : npm install --global gulp-cli
28
- - save_cache :
29
- key : generator-angular-fullstack-npm-global-{{ .Branch }}
30
- paths :
31
- - /usr/local/lib/node_modules
32
-
33
22
# Generator npm dependencies
34
23
- restore_cache :
35
24
keys :
@@ -43,19 +32,19 @@ jobs:
43
32
- ~/generator-angular-fullstack/node_modules
44
33
45
34
# Test fixtures
46
- - run : gulp updateFixtures:test
35
+ - run : npx gulp updateFixtures:test
47
36
- restore_cache :
48
37
keys :
49
38
- generator-angular-fullstack-npm-fixtures-{{ .Branch }}-{{ checksum "templates/app/_package.json" }}
50
39
- generator-angular-fullstack-npm-fixtures-{{ .Branch }}
51
40
- generator-angular-fullstack-npm-fixtures-
52
- - run : gulp installFixtures
41
+ - run : npx gulp installFixtures
53
42
- save_cache :
54
43
key : generator-angular-fullstack-npm-fixtures-{{ .Branch }}-{{ checksum "templates/app/_package.json" }}
55
44
paths :
56
45
- ~/generator-angular-fullstack/test/fixtures/node_modules
57
46
58
- - run : gulp build
47
+ - run : npx gulp build
59
48
- run : npm test
60
49
61
50
- deploy :
You can’t perform that action at this time.
0 commit comments