Skip to content

Commit a070004

Browse files
committed
try to fix the CI
1 parent fa3fd78 commit a070004

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ci_cli.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@ jobs:
2020

2121
typecheck:
2222
runs-on: ubuntu-latest
23+
defaults:
24+
run:
25+
working-directory: ./
2326
steps:
2427
- uses: actions/checkout@v4
2528
- run: npm i
2629
- run: npm run build
27-
working-directory: ../../packages/components
30+
working-directory: ./packages/components
2831
- run: tsc
32+
working-directory: ./apps/cli
2933

3034
test:
3135
runs-on: ubuntu-latest
@@ -36,9 +40,13 @@ jobs:
3640

3741
buildcheck:
3842
runs-on: ubuntu-latest
43+
defaults:
44+
run:
45+
working-directory: ./
3946
steps:
4047
- uses: actions/checkout@v4
4148
- run: npm i
4249
- run: npm run build
43-
working-directory: ../../packages/components
50+
working-directory: ./packages/components
4451
- run: npm run build
52+
working-directory: ./apps/cli

0 commit comments

Comments
 (0)