1 parent e76bb7d commit 9a18cddCopy full SHA for 9a18cdd
2 files changed
.github/workflows/tests.yml
@@ -78,4 +78,4 @@ jobs:
78
./.ci/inkbox/sdk/typescript \
79
@opencode-ai/sdk@1.17.18 @opencode-ai/plugin@1.17.18
80
- run: npm install -g opencode-ai@latest
81
- - run: bash scripts/smoke-loader.sh
+ - run: INKBOX_SDK_PATH="$PWD/.ci/inkbox/sdk/typescript" bash scripts/smoke-loader.sh
scripts/smoke-loader.sh
@@ -25,7 +25,11 @@ echo "==> creating throwaway project in $WORKDIR"
25
cd "$WORKDIR"
26
git init -q .
27
npm init -y >/dev/null
28
-npm install --silent "$TARBALL"
+if [ -n "${INKBOX_SDK_PATH:-}" ]; then
29
+ npm install --silent "$INKBOX_SDK_PATH" "$TARBALL"
30
+else
31
+ npm install --silent "$TARBALL"
32
+fi
33
34
mkdir -p .opencode/plugins
35
# The wrapper loads the packaged plugin exactly as opencode would, then drops
0 commit comments