mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-06 15:29:47 +00:00
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:
4
.github/workflows/check-dist.yml
vendored
4
.github/workflows/check-dist.yml
vendored
@ -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: |
|
||||
|
Reference in New Issue
Block a user