Browse Source

Update config.yml

pull/3/merge
ndrg13 6 years ago
committed by GitHub
parent
commit
9d53c8f930
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      .circleci/config.yml

15
.circleci/config.yml

@ -1,11 +1,14 @@
version: 2.1
jobs:
build:
docker:
- image: circleci/node:13 # the primary container, where your job's commands are run
executors:
my-executor:
docker:
- image: circleci/node:13
auth:
username: nicodrg
password: Ndrg100394 # context / project UI env-var reference
password: Ndrg100394
jobs:
build:
executor: my-executor
steps:
- checkout
- restore_cache:
@ -21,6 +24,7 @@ jobs:
paths:
- ./.cache/yarn
lint:
executor: my-executor
steps:
- checkout
- restore_cache:
@ -34,6 +38,7 @@ jobs:
name: Format code with prettier
command: yarn format:check
test:
executor: my-executor
steps:
- checkout
- restore_cache:

Loading…
Cancel
Save