Skip to content

Commit 49d2157

Browse files
committedNov 11, 2023
Fix integration.yml workflow
1 parent 3d8a245 commit 49d2157

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed
 

‎.github/workflows/integration.yml

+8-12
Original file line numberDiff line numberDiff line change
@@ -25,33 +25,29 @@ jobs:
2525
with:
2626
repository: JoshuaKGoldberg/create-typescript-app
2727
path: create-typescript-app
28-
- run: bun install
29-
- run: bun link knip
30-
- run: bun knip
28+
- run: cd create-typescript-app && bun install
29+
- run: bun knip --directory create-typescript-app
3130

3231
- name: Test Knip against slonik
3332
uses: actions/checkout@v3
3433
with:
3534
repository: gajus/slonik
3635
path: slonik
37-
- run: bun install
38-
- run: bun link knip
39-
- run: bun knip
36+
- run: cd slonik && bun install
37+
- run: bun knip --directory slonik
4038

4139
- name: Test Knip against 10ten-ja-reader
4240
uses: actions/checkout@v3
4341
with:
4442
repository: birchill/10ten-ja-reader
4543
path: 10ten-ja-reader
46-
- run: bun install
47-
- run: bun link knip
48-
- run: bun knip
44+
- run: cd 10ten-ja-reader && bun install
45+
- run: bun knip --directory 10ten-ja-reader
4946

5047
- name: Test Knip against DefinitelyTyped-tools
5148
uses: actions/checkout@v3
5249
with:
5350
repository: microsoft/DefinitelyTyped-tools
5451
path: DefinitelyTyped-tools
55-
- run: bun install
56-
- run: bun link knip
57-
- run: bun knip
52+
- run: cd DefinitelyTyped-tools && bun install || true # bun/pnpm
53+
- run: bun knip --directory DefinitelyTyped-tools

0 commit comments

Comments
 (0)
Please sign in to comment.