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.
1 parent 0b1d483 commit efa8e82Copy full SHA for efa8e82
.circleci/config.yml
@@ -11,17 +11,14 @@ jobs:
11
steps:
12
- checkout
13
- restore_cache:
14
- key: dependency-cache-{{ checksum "yarn.lock" }}
+ key: dependency-cache-{{ checksum "package.json" }}
15
- run:
16
name: install dependences
17
- command: yarn
+ command: npm install
18
- save_cache:
19
20
paths:
21
- - ./node_modules
22
- - run:
23
- name: test
24
- command: yarn test
+ - ~/project/node_modules
25
26
name: release
27
command: npx semantic-release
0 commit comments