Skip to content

Commit

Permalink
Update .circleci config file
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip committed Mar 27, 2020
1 parent 8eba528 commit 1700023
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
version: 2.1
jobs:
unit-tests:
build:
docker:
- image: circleci/node:lts
steps:
- checkout
- run:
name: Go to directory
command: cd done
- run:
name: Install dependencies with yarn
command: yarn
command: cd done && yarn
- run:
name: Run unit tests
command: yarn test:unit
command: cd done && yarn test:unit

workflows:
unit-tests:
jobs:
- unit-tests
- build

0 comments on commit 1700023

Please sign in to comment.