Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
Use yarn instead of npm
Browse files Browse the repository at this point in the history
  • Loading branch information
tusbar committed Jun 4, 2019
1 parent 6ca9037 commit 441a588
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- run:
name: Install dependencies
command: npm install
command: yarn --frozen-lockfile

- save_cache:
name: Save node_modules cache
Expand All @@ -56,7 +56,7 @@ jobs:

- run:
name: Lint JavaScript
command: npx xo
command: yarn xo

test:
<<: *nodejs_container
Expand All @@ -66,14 +66,14 @@ jobs:

- run:
name: Test
command: npm test
command: yarn test

- store_test_results:
path: reports/tests/

- run:
name: Upload code coverage to codecov
command: npx codecov
command: yarn codecov

workflows:
version: 2
Expand Down

0 comments on commit 441a588

Please sign in to comment.