Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ jobs:
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- name: Verify published packages include dist
run: |
for pkg in packages/hdrify packages/cli packages/hdrify-react; do
(cd "$pkg" && pnpm pack --dry-run) | grep -qx 'dist/index.js' || {
echo "::error::dist/index.js missing from the packed tarball for $pkg; the publish step would ship a broken package."
exit 1
}
done
- run: pnpm tsc
- run: pnpm lint
- run: pnpm test --coverage
Expand Down
Loading