Skip to content

Commit 3a4bbb4

Browse files
committed
#351 fix(fe): 스크립트 수정
1 parent 5c3df5f commit 3a4bbb4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/fe-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
working-directory: src/frontend
7272
run: |
7373
if [ "${{ matrix.task }}" = "lint" ]; then
74-
pnpm run turbo lint --parallel
74+
pnpm run lint --parallel
7575
elif [ "${{ matrix.task }}" = "test" ]; then
76-
pnpm run turbo test --filter=web --parallel
76+
pnpm run test --parallel
7777
fi
7878
7979
build:

src/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build:ui": "turbo build --filter=@workspace/ui",
99
"dev": "turbo dev",
1010
"test": "turbo run test --filter=web",
11-
"lint": "turbo lint",
11+
"lint": "turbo lint --filter=web --filter=@workspace/ui",
1212
"format": "turbo run format",
1313
"storybook": "turbo run storybook --filter=@workspace/ui",
1414
"build-storybook": "turbo run build-storybook --filter=@workspace/ui",

0 commit comments

Comments
 (0)