Skip to content

Commit 472141b

Browse files
committed
get things working
1 parent f876edb commit 472141b

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ui-development.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ jobs:
5656
npm ci
5757
5858
- name: Run unit tests
59-
run: make test-unit
59+
run: |
60+
cd ui
61+
make test-unit
6062
6163
integration-tests:
6264
permissions:
@@ -72,7 +74,9 @@ jobs:
7274
npm ci
7375
7476
- name: Run integration tests
75-
run: make test-integration
77+
run: |
78+
cd ui
79+
make test-integration
7680
7781
e2e-tests:
7882
# Permissions needed to get ID token for OIDC auth
@@ -96,8 +100,11 @@ jobs:
96100
97101
- name: Start the Next.js app
98102
run: |
103+
cd ui
99104
npx serve@latest out &
100105
npx wait-on http://localhost:3000 # Wait until the app is ready
101106
102107
- name: Run Cypress tests
103-
run: npx cypress run --headless
108+
run: |
109+
cd ui
110+
npx cypress run --headless

0 commit comments

Comments
 (0)