Skip to content

Commit 90bcf0c

Browse files
chore: move to npm installation deps procedure
1 parent 3ba8165 commit 90bcf0c

File tree

3 files changed

+10458
-7314
lines changed

3 files changed

+10458
-7314
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ jobs:
1212
steps:
1313
- checkout
1414
- restore_cache:
15-
name: Restore Yarn Package Cache
15+
name: Restore npm Package Cache
1616
keys:
17-
- yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
18-
- yarn-packages-{{ .Branch }}
19-
- yarn-packages-master
20-
- yarn-packages-
17+
- npm-packages-{{ .Branch }}-{{ checksum "package-lock.json" }}
18+
- npm-packages-{{ .Branch }}
19+
- npm-packages-master
20+
- npm-packages-
2121
- run:
2222
name: Install dependencies
23-
command: yarn --frozen-lockfile
23+
command: npm ci
2424
- run:
2525
name: Test
26-
command: yarn test-ci
26+
command: npm run test-ci
2727
- save_cache:
28-
name: Save Yarn Package Cache
29-
key: yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
28+
name: Save npm Package Cache
29+
key: npm-packages-{{ .Branch }}-{{ checksum "package-lock.json" }}
3030
paths:
3131
- node_modules/
3232
node-v12:

0 commit comments

Comments
 (0)