Skip to content

Commit efa8e82

Browse files
committed
fix: circlec config
1 parent 0b1d483 commit efa8e82

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.circleci/config.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,14 @@ jobs:
1111
steps:
1212
- checkout
1313
- restore_cache:
14-
key: dependency-cache-{{ checksum "yarn.lock" }}
14+
key: dependency-cache-{{ checksum "package.json" }}
1515
- run:
1616
name: install dependences
17-
command: yarn
17+
command: npm install
1818
- save_cache:
19-
key: dependency-cache-{{ checksum "yarn.lock" }}
19+
key: dependency-cache-{{ checksum "package.json" }}
2020
paths:
21-
- ./node_modules
22-
- run:
23-
name: test
24-
command: yarn test
21+
- ~/project/node_modules
2522
- run:
2623
name: release
2724
command: npx semantic-release

0 commit comments

Comments
 (0)