File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -17,22 +17,16 @@ jobs:
17
17
18
18
19
19
- restore_cache :
20
- key : dependency-cache-{{ checksum "package.json" }}
20
+ key : dependency-cache-{{ checksum "package.json" }}-{{ checksum "angular-testdrive/package.json" }}
21
21
- run : npm i --silent
22
+ - run : cd angular-testdrive && npm i --silent
22
23
- save_cache :
23
- key : dependency-cache-{{ checksum "package.json" }}
24
+ key : dependency-cache-{{ checksum "package.json" }}-{{ checksum "angular-testdrive/package.json" }}
24
25
paths :
25
26
- node_modules
27
+ - angular-testdrive/node_modules
26
28
27
29
28
- - run : cd angular-testdrive
29
- - restore_cache :
30
- key : dependency-cache-{{ checksum "package.json" }}
31
- - run : npm i --silent
32
- - save_cache :
33
- key : dependency-cache-{{ checksum "package.json" }}
34
- paths :
35
- - node_modules
36
- - run : npm run build
37
- - run : ../bin/angular-cli-ghpages --repo "$GITHUB_ORG/$NAME.git" --name "$GITHUB_NAME" --email "$GITHUB_EMAIL" --dir=dist/angular-testdrive --cname=angular-cli-ghpages.angular.schule
30
+ - run : cd angular-testdrive && npm run build
31
+ - run : cd angular-testdrive && ../bin/angular-cli-ghpages --repo "$GITHUB_ORG/$NAME.git" --name "$GITHUB_NAME" --email "$GITHUB_EMAIL" --dir=dist/angular-testdrive --cname=angular-cli-ghpages.angular.schule
38
32
You can’t perform that action at this time.
0 commit comments