diff --git a/.github/workflows/frontend-system-tests.yml b/.github/workflows/frontend-system-tests.yml index 6497b911..9c41b285 100644 --- a/.github/workflows/frontend-system-tests.yml +++ b/.github/workflows/frontend-system-tests.yml @@ -34,6 +34,13 @@ jobs: - name: Test connectivity run: curl ${API_URL} + - name: Install and start frontend + run: | + cd ./frontend + npm ci + npm run build + npm run start + - name: Install Playwright run: | cd ./playwright @@ -43,7 +50,7 @@ jobs: - name: Run Playwright Tests run: | cd ./playwright - npm run test + npm run test - name: Stop service in docker run: |