We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c927cff commit 306cabeCopy full SHA for 306cabe
.github/workflows/lint-test.yml
@@ -3,20 +3,16 @@ name: Frontend Lint
3
on:
4
push:
5
branches: [main, dev]
6
- paths:
7
- - "frontend/**"
8
pull_request:
9
10
11
12
13
jobs:
14
lint:
15
runs-on: ubuntu-latest
16
17
defaults:
18
run:
19
- working-directory: frontend # ⭐ 핵심
+ working-directory: . # ⭐ 핵심
20
21
steps:
22
- name: Checkout
@@ -33,7 +29,7 @@ jobs:
33
29
with:
34
30
node-version: 20
35
31
cache: pnpm
36
- cache-dependency-path: frontend/pnpm-lock.yaml # ⭐ 핵심
32
+ cache-dependency-path: pnpm-lock.yaml # ⭐ 핵심
37
38
- name: Install dependencies
39
run: pnpm install --frozen-lockfile
.husky/pre-commit
@@ -1 +1 @@
1
-pnpm test
+pnpm lint
0 commit comments