MTLantoine 6 years ago
parent
commit
2c6d11af2f
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -2,7 +2,7 @@ version: 2.1
jobs:
build:
docker: &shared_docker
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run
- image: circleci/node:12
steps:
- checkout # check out the code in the project directory
- restore_cache:
@ -55,6 +55,8 @@ workflows:
build_test:
jobs:
- build
- lint
- test
- lint:
requires: build
- test:
requires: build
# - e2e_test
Loading…
Cancel
Save