Browse Source

update same file

main
Zelleg 5 years ago
parent
commit
aec2f33cc8
  1. 9
      .circleci/config.yml

9
.circleci/config.yml

@ -15,6 +15,8 @@ jobs:
- ~/.stack
- restore_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
test:
steps:
- run:
name: Lint
command: yarn lint
@ -24,3 +26,10 @@ jobs:
- run:
name: yarn test ci
command: yarn test
workflows:
version: 2
build_and_test:
jobs:
- build
- test
Loading…
Cancel
Save