File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -141,8 +141,10 @@ jobs:
141141 (cd astro && npm pack --pack-destination "$SMOKE")
142142 mkdir "$SMOKE/extract"
143143 tar xzf "$SMOKE/run402-astro-$NEW.tgz" -C "$SMOKE/extract"
144- # Required artifacts:
145- test -f "$SMOKE/extract/package/src/Image.astro" || (echo "Missing Image.astro" && exit 1)
144+ # Required artifacts. Image.astro moved from src/ to dist/ in
145+ # v0.1.2 (kychee-com/run402-private#396) so the build step can
146+ # ship it as a peer of the JS modules it imports.
147+ test -f "$SMOKE/extract/package/dist/Image.astro" || (echo "Missing dist/Image.astro" && exit 1)
146148 test -f "$SMOKE/extract/package/dist/index.js" || (echo "Missing dist/index.js" && exit 1)
147149 test -f "$SMOKE/extract/package/dist/index.d.ts" || (echo "Missing dist/index.d.ts" && exit 1)
148150 test -f "$SMOKE/extract/package/README.md" || (echo "Missing README" && exit 1)
You can’t perform that action at this time.
0 commit comments