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

8
.circleci/config.yml

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