Skip to content

Commit 3d62387

Browse files
committed
Correctly generate dist in pipelines
1 parent 30e8484 commit 3d62387

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
- name: Install dependencies
2020
run: npm ci
2121
- name: Rebuild the dist/ directory
22-
run: npm run build
22+
run: |
23+
npm run build
24+
npm run package
2325
- name: Compare the expected and actual dist/ directories
2426
run: |
2527
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then

0 commit comments

Comments
 (0)