Skip to content

Commit

Permalink
add test for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Galimede committed Nov 2, 2020
1 parent 18952a5 commit 8365efa
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,21 @@ jobs:
- restore_cache:
key: yarn-packages-v2{{ checksum "yarn.lock" }}
- run : yarn lint && yarn format:check

test:
docker:
- image: cimg/node:14.10.1
steps:
- checkout
- restore_cache:
key: yarn-packages-v2{{ checksum "yarn.lock" }}
- run : yarn test:ci
workflows:
build_and_test:
jobs:
- build
- check_format:
requires:
- build
- test:
requires:
- build

0 comments on commit 8365efa

Please sign in to comment.