Skip to content

Commit

Permalink
fix: circlec config
Browse files Browse the repository at this point in the history
  • Loading branch information
iquidus committed Nov 9, 2019
1 parent 0b1d483 commit efa8e82
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,14 @@ jobs:
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install dependences
command: yarn
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: yarn test
- ~/project/node_modules
- run:
name: release
command: npx semantic-release

0 comments on commit efa8e82

Please sign in to comment.