We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eba528 commit 1700023Copy full SHA for 1700023
.circleci/config.yml
@@ -1,21 +1,18 @@
1
version: 2.1
2
jobs:
3
- unit-tests:
+ build:
4
docker:
5
- image: circleci/node:lts
6
steps:
7
- checkout
8
- - run:
9
- name: Go to directory
10
- command: cd done
11
- run:
12
name: Install dependencies with yarn
13
- command: yarn
+ command: cd done && yarn
14
15
name: Run unit tests
16
- command: yarn test:unit
+ command: cd done && yarn test:unit
17
18
workflows:
19
unit-tests:
20
21
- - unit-tests
+ - build
0 commit comments