Skip to content

Commit 90be347

Browse files
committed
fix: stop examples from installing deps
1 parent 1700f09 commit 90be347

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
cache: "pnpm"
2424

2525
- name: Install dependencies
26-
run: pnpm install -r --no-frozen-lockfile
26+
run: pnpm install --no-frozen-lockfile
2727

2828
- name: Run lint and fix
2929
run: pnpm run lint:fix

.github/workflows/check-langchain-tools.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Check LangChain Tool Names
22
on:
33
push:
4-
branches: [ main ]
4+
branches: [main]
55
pull_request:
6-
branches: [ main ]
6+
branches: [main]
77

88
jobs:
99
check-langchain-tool-names:
@@ -24,6 +24,6 @@ jobs:
2424
cache: "pnpm"
2525

2626
- name: Install dependencies
27-
run: pnpm install -r --no-frozen-lockfile
27+
run: pnpm install --no-frozen-lockfile
2828

2929
- run: pnpm run check-tool-names:langchain

0 commit comments

Comments
 (0)