We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcbaf4e commit c92be36Copy full SHA for c92be36
.github/workflows/ci.yml
@@ -46,7 +46,9 @@ jobs:
46
- name: Build project
47
run: yarn run build
48
- name: Run tests
49
- run: yarn run test
+ run: yarn run test:jest
50
+ - name: Run webpack
51
+ run: yarn run test:webpack
52
- name: Submit coverage results
53
uses: coverallsapp/github-action@master
54
with:
package.json
@@ -21,7 +21,7 @@
21
"license": "MIT",
22
"packageManager": "[email protected]",
23
"scripts": {
24
- "test": "yarn test:jest && yarn test:webpack",
+ "test": "yarn test:jest",
25
"test:jest": "jest",
26
"test:webpack": "yarn test:webpack:node && yarn test:webpack:web",
27
"test:webpack:node": "webpack -c test/webpack/webpack.config.js && node test/webpack/build/test.min.js",
0 commit comments