We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92b4b8b commit 06f15dbCopy full SHA for 06f15db
.github/workflows/nodejs.yml
@@ -63,10 +63,14 @@ jobs:
63
64
- name: 🔧 Install demo-app deps + local package
65
run: |
66
+ # ── figure out the real .tgz filename (there’s only one) ───────────────
67
+ PKG_TGZ="$(ls "$GITHUB_WORKSPACE"/imagekit-vue-*.tgz)"
68
+ echo "Installing $PKG_TGZ"
69
+
70
+ # ── now set up the demo app ───────────────────────────────────────────
71
cd test-apps/${{ matrix.app }}
72
npm install
- # install your freshly-packed tarball from the workspace root
- npm install "${{ github.workspace }}/imagekit-vue-*.tgz" --no-save
73
+ npm install "$PKG_TGZ" --no-save
74
75
- name: 🧑💻 Install Playwright browsers
76
run: npx playwright install --with-deps
0 commit comments