Thaisrr
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
0 deletions
-
.circleci/config.yml
|
|
@ -4,6 +4,7 @@ workflows: |
|
|
jobs: |
|
|
jobs: |
|
|
- hello |
|
|
- hello |
|
|
- install |
|
|
- install |
|
|
|
|
|
- prettyfy |
|
|
jobs: |
|
|
jobs: |
|
|
hello: |
|
|
hello: |
|
|
docker: |
|
|
docker: |
|
|
@ -23,3 +24,15 @@ jobs: |
|
|
key: yarn-packages-{{ checksum "yarn.lock" }} |
|
|
key: yarn-packages-{{ checksum "yarn.lock" }} |
|
|
paths: |
|
|
paths: |
|
|
- ./node_modules |
|
|
- ./node_modules |
|
|
|
|
|
prettyfy: |
|
|
|
|
|
docker: |
|
|
|
|
|
- image: cimg/node:14.10.1 |
|
|
|
|
|
steps: |
|
|
|
|
|
- checkout |
|
|
|
|
|
- restore_cache: |
|
|
|
|
|
key: yarn-packages-{{ checksum "yarn.lock" }} |
|
|
|
|
|
- run: yarn lint && yarn format:check |
|
|
|
|
|
- save_cache: |
|
|
|
|
|
key: yarn-packages-{{ checksum "yarn.lock" }} |
|
|
|
|
|
paths: |
|
|
|
|
|
- ./node_modules |