Browse Source

Update config.yml

main
Thaisrr 6 years ago
committed by GitHub
parent
commit
8f15aa8791
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      .circleci/config.yml

19
.circleci/config.yml

@ -4,7 +4,12 @@ workflows:
jobs:
- hello
- install
- prettyfy
- prettyfy:
requires:
- install
- tests:
requires:
- install
jobs:
hello:
docker:
@ -36,3 +41,15 @@ jobs:
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
tests:
docker:
- image: cimg/node:14.10.1
steps:
- checkout
- restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn test:ci
- save_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
Loading…
Cancel
Save