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 125a449 commit 0961311Copy full SHA for 0961311
3 files changed
.github/workflows/smoke-tests.yml
@@ -42,6 +42,9 @@ jobs:
42
node-version: '20'
43
cache: yarn
44
45
+ - name: Ensure yarn cache directory exists
46
+ run: mkdir -p $(yarn cache dir)
47
+
48
- name: Install dependencies
49
run: yarn --frozen-lockfile
50
packages/mcp-server/build
@@ -42,7 +42,7 @@ node scripts/copy-bundle-files.cjs
# install runtime deps
cd dist-bundle
-npm install
+npm install --prefer-offline --no-audit --no-fund
cd ..
# pack bundle
scripts/build
@@ -57,6 +57,6 @@ fi
57
# build all sub-packages
58
for dir in packages/*; do
59
if [ -d "$dir" ]; then
60
- (cd "$dir" && yarn install && yarn build)
+ (cd "$dir" && yarn build)
61
fi
62
done
0 commit comments