Skip to content

Commit 72a8377

Browse files
fix(ci): run DMV build in node_modules directory (#425)
pnpm --filter only works for workspace projects, not dependencies. Run the build directly in node_modules/dicom-microscopy-viewer instead. Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c580627 commit 72a8377

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/deploy-to-firebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
# Build DMV if dist files are missing (git dependency in package.json)
9292
if [ ! -f "node_modules/dicom-microscopy-viewer/dist/dynamic-import/dicomMicroscopyViewer.min.js" ]; then
9393
echo "DMV dist files missing - building from git dependency"
94-
pnpm --filter dicom-microscopy-viewer run build
94+
(cd node_modules/dicom-microscopy-viewer && pnpm run build)
9595
fi
9696
9797
- name: Require preview DICOMweb URL

0 commit comments

Comments
 (0)