We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f876edb commit 472141bCopy full SHA for 472141b
.github/workflows/ui-development.yml
@@ -56,7 +56,9 @@ jobs:
56
npm ci
57
58
- name: Run unit tests
59
- run: make test-unit
+ run: |
60
+ cd ui
61
+ make test-unit
62
63
integration-tests:
64
permissions:
@@ -72,7 +74,9 @@ jobs:
72
74
73
75
76
- name: Run integration tests
- run: make test-integration
77
78
79
+ make test-integration
80
81
e2e-tests:
82
# Permissions needed to get ID token for OIDC auth
@@ -96,8 +100,11 @@ jobs:
96
100
97
101
- name: Start the Next.js app
98
102
run: |
103
99
104
npx serve@latest out &
105
npx wait-on http://localhost:3000 # Wait until the app is ready
106
107
- name: Run Cypress tests
- run: npx cypress run --headless
108
109
110
+ npx cypress run --headless
0 commit comments