forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(test): Add circle ci as third CI/CD Pipeline (webpack#3849)
* ci(circle): add circleci testing integration
- Loading branch information
1 parent
e6d3a40
commit bb8e28b
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |