Browse Source

add lint and test job

main
KheliaNibaruta 6 years ago
parent
commit
da12cdac2a
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -12,7 +12,7 @@ workflow:
jobs:
build:
docker:
- image: cimg/node:12.18
- image: cimg/node:14.10.1
steps:
- checkout
- restore_cache:
@ -24,7 +24,7 @@ jobs:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
lint:
docker:
- image: cimg/node:12.18
- image: cimg/node:14.10.1
steps:
- checkout
- restore_cache:
@ -32,7 +32,7 @@ jobs:
- run: yarn lint && yarn format:check
test:
docker:
- image: cimg/node:12.18
- image: cimg/node:14.10.1
steps:
- checkout
- restore_cache:

Loading…
Cancel
Save