Skip to content

Commit 7cb46da

Browse files
committed
Run front-end tests in correct directory
1 parent ee2e4ce commit 7cb46da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/front-end.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ jobs:
2121
with:
2222
node-version: "20"
2323
- name: Install dependencies
24-
run: npm ci
24+
run: |
25+
cd front-end
26+
npm ci
2527
- name: Build production bundle
2628
run: |
29+
cd front-end
2730
# npm run lint
2831
npm test -- --coverage
2932
npm run build

0 commit comments

Comments
 (0)