We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 468c8da commit 0106ecdCopy full SHA for 0106ecd
.circleci/config.yml
@@ -6,12 +6,6 @@ jobs:
6
working_directory: ~/csgigs
7
steps:
8
- checkout
9
- - restore_cache:
10
- keys:
11
- # when lock file changes, use increasingly general patterns to restore cache
12
- - node-v1-{{ .Branch }}-{{ checksum "client/package-lock.json" }}
13
- - node-v1-{{ .Branch }}-
14
- - node-v1-
15
- run:
16
name: Install client dependencies
17
command: npm install --prefix client
@@ -24,10 +18,6 @@ jobs:
24
18
25
19
name: Copying client build files to server
26
20
command: cp -R client/build/. server/public
27
- - save_cache:
28
- paths:
29
- - ~/usr/local/lib/node_modules # location depends on npm version
30
- key: node-v1-{{ .Branch }}-{{ checksum "package-lock.json" }}
31
21
- persist_to_workspace:
32
22
root: .
33
23
paths: .
0 commit comments