Skip to content

Commit bb8e28b

Browse files
authored
ci(test): Add circle ci as third CI/CD Pipeline (webpack#3849)
* ci(circle): add circleci testing integration
1 parent e6d3a40 commit bb8e28b

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

circle.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
general:
2+
artifacts:
3+
- "./coverage"
4+
5+
machine:
6+
node:
7+
version: 4.7.0
8+
9+
dependencies:
10+
pre:
11+
- npm install -g yarn
12+
override:
13+
- yarn install
14+
post:
15+
- yarn link || true && yarn link webpack
16+
17+
test:
18+
pre:
19+
- npm run travis:lint
20+
override:
21+
- npm run travis:test:
22+
parallel: true
23+
files:
24+
- test/ConfigTestCases.test.js
25+
- test/TestCases.test.js
26+
- test/Stats.test.js
27+
- test/**/*.test.js

0 commit comments

Comments
 (0)