Skip to content

Commit

Permalink
Move build into its own step in circle
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Apr 30, 2019
1 parent 26616f5 commit 8310ead
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@ jobs:
- v1-dependencies-

- run:
name: Install and build package
name: Install
command: yarn install --frozen-lockfile

- run:
name: Build
command: yarn build

- run:
name: Run tests
command: yarn test --runInBand --no-cache --coverage
Expand Down

0 comments on commit 8310ead

Please sign in to comment.