Browse Source

Fix: change order

main
verzelea 6 years ago
parent
commit
49400d1a2f
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -25,22 +25,22 @@ jobs:
key: yarn-packages-v2{{ checksum "yarn.lock" }}
paths:
- ./node_modules
test:
lint:
docker:
- image: cimg/node:12.18
steps:
- checkout
- restore_cache:
key: yarn-packages-v2{{ checksum "yarn.lock" }}
- run : yarn test:ci
lint:
- run: yarn lint && yarn format:check
test:
docker:
- image: cimg/node:12.18
steps:
- checkout
- restore_cache:
key: yarn-packages-v2{{ checksum "yarn.lock" }}
- run: yarn lint && yarn format:check
- run : yarn test:ci
e2e:
docker:
- image: cimg/node:12.18

Loading…
Cancel
Save