Skip to content

Commit

Permalink
ci(test): Add circle ci as third CI/CD Pipeline (webpack#3849)
Browse files Browse the repository at this point in the history
* ci(circle): add circleci testing integration
  • Loading branch information
TheLarkInn authored Jan 8, 2017
1 parent e6d3a40 commit bb8e28b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
general:
artifacts:
- "./coverage"

machine:
node:
version: 4.7.0

dependencies:
pre:
- npm install -g yarn
override:
- yarn install
post:
- yarn link || true && yarn link webpack

test:
pre:
- npm run travis:lint
override:
- npm run travis:test:
parallel: true
files:
- test/ConfigTestCases.test.js
- test/TestCases.test.js
- test/Stats.test.js
- test/**/*.test.js

0 comments on commit bb8e28b

Please sign in to comment.