We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b5391 commit 4f45fbfCopy full SHA for 4f45fbf
.github/workflows/ci.yml
@@ -64,7 +64,11 @@ jobs:
64
65
- name: Place built files
66
shell: bash
67
- run: mv artifact/* .
+ run: |
68
+ mkdir dist && mv artifact/dist/* ./dist
69
+ mkdir dist-esm && mv artifact/dist-esm/* ./dist-esm
70
+ mkdir bundle && mv artifact/bundle/* ./bundle
71
+ mkdir -p test-dev/webpack/dist/ && mv test-dev/webpack/dist/* ./test-dev/webpack/dist/
72
73
- name: run the tests
74
run: npm run test:ava && npm run test:puppeteer:basic && npm run test:puppeteer:webpack
0 commit comments