Browse Source

two jobs

pull/1/merge
MTLantoine 6 years ago
parent
commit
8400802a6c
  1. 17
      .circleci/config.yml

17
.circleci/config.yml

@ -1,13 +1,22 @@
version: 2.1 version: 2.1
workflows:
workflow:
jobs:
- yarnlint
- yarntest
jobs: jobs:
build:
yarnlint:
docker: docker:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run - image: cimg/node:14.10.1 # the primary container, where your job's commands are run
auth:
username: mydockerhub-user
password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
steps: steps:
- checkout # check out the code in the project directory - checkout # check out the code in the project directory
- run:
command: 'echo ok'
name: 'Hello World'
yarntest:
docker:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run
steps:
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
- restore_cache: - restore_cache:
keys: keys:

Loading…
Cancel
Save