Skip to content

Commit 4f45fbf

Browse files
committed
Move artifacts one by one
1 parent 87b5391 commit 4f45fbf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,11 @@ jobs:
6464

6565
- name: Place built files
6666
shell: bash
67-
run: mv artifact/* .
67+
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/
6872
6973
- name: run the tests
7074
run: npm run test:ava && npm run test:puppeteer:basic && npm run test:puppeteer:webpack

0 commit comments

Comments
 (0)