Fix check-dist workflow not actually rebuilding

The workflow was missing the `npm run package` step. Without this the check will always succeed as the /dist folder won't be updated.
This commit is contained in:
Pascal Jufer
2021-10-27 13:28:55 +02:00
committed by GitHub
parent 56d91620d7
commit 86d3ac814f

View File

@ -32,7 +32,9 @@ jobs:
run: npm ci
- name: Rebuild the dist/ directory
run: npm run build
run: |
npm run build
npm run package
- name: Compare the expected and actual dist/ directories
run: |