Skip to content

Commit 398e2d8

Browse files
committed
Specify working dir
1 parent a612cb8 commit 398e2d8

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/frontend-format.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,17 @@ jobs:
1515
- name: Checkout repository
1616
uses: actions/checkout@v3
1717

18+
1819
- name: Setup Node.js
1920
uses: actions/setup-node@v2
2021
with:
2122
node-version: '20'
2223

24+
2325
- name: Install dependencies
2426
run: npm ci --include=dev
27+
working-directory: frontend
2528

2629
- name: Format
2730
run: npm run format-ci
31+
working-directory: frontend

.github/workflows/frontend-lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222

2323
- name: Install dependencies
2424
run: npm ci --include=dev
25+
working-directory: frontend
2526

2627
- name: Lint
2728
run: npm run lint-ci
29+
working-directory: frontend

0 commit comments

Comments
 (0)