Skip to content

Commit 0121988

Browse files
committed
fix: test cd step
1 parent 8a05cea commit 0121988

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/ci-frontend.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,14 @@ jobs:
2929
with:
3030
node-version-file: ".nvmrc"
3131

32-
- name: cd frontend
33-
run: cd frontend
34-
3532
- name: install dependencies
36-
run: npm ci
33+
run: cd frontend && npm ci
3734

3835
- name: check formatting
39-
run: npm run prettier
36+
run: cd frontend && npm run prettier
4037

4138
- name: check lint
42-
run: npm run lint
39+
run: cd frontend && npm run lint
4340

4441
- name: check types
45-
run: npm run types:check
42+
run: cd frontend && npm run types:check

0 commit comments

Comments
 (0)