Skip to content

Commit 0961311

Browse files
committed
optimizations?
1 parent 125a449 commit 0961311

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/smoke-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
node-version: '20'
4343
cache: yarn
4444

45+
- name: Ensure yarn cache directory exists
46+
run: mkdir -p $(yarn cache dir)
47+
4548
- name: Install dependencies
4649
run: yarn --frozen-lockfile
4750

packages/mcp-server/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ node scripts/copy-bundle-files.cjs
4242

4343
# install runtime deps
4444
cd dist-bundle
45-
npm install
45+
npm install --prefer-offline --no-audit --no-fund
4646
cd ..
4747

4848
# pack bundle

scripts/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ fi
5757
# build all sub-packages
5858
for dir in packages/*; do
5959
if [ -d "$dir" ]; then
60-
(cd "$dir" && yarn install && yarn build)
60+
(cd "$dir" && yarn build)
6161
fi
6262
done

0 commit comments

Comments
 (0)