Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

Commit

Permalink
ci(circle): Fix rebuild issues
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwiens committed Dec 20, 2017
1 parent 4a62cd5 commit b4be0c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Expand Up @@ -6,7 +6,7 @@ unit_tests: &unit_tests
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: NPM Rebuild
command: npm rebuild
command: npm install
- run:
name: Run unit tests.
command: npm run ci:test
Expand All @@ -18,7 +18,7 @@ canary_tests: &canary_tests
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: NPM Rebuild
command: npm rebuild
command: npm install
- run:
name: Install Webpack Canary
command: npm i --no-save webpack@next
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: NPM Rebuild
command: npm rebuild
command: npm install
- run:
name: Run unit tests.
command: npm run ci:coverage
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: NPM Rebuild
command: npm rebuild
command: npm install
- run:
name: Run linting.
command: npm run lint
Expand All @@ -104,7 +104,7 @@ jobs:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: NPM Rebuild
command: npm rebuild
command: npm install
- run:
name: Validate Commit Messages
command: npm run release:validate
Expand Down

0 comments on commit b4be0c8

Please sign in to comment.