added Maven compile step before Playwright browser installation in test.yml
This commit is contained in:
parent
2d8cbae7a5
commit
081d69577e
1 changed files with 3 additions and 1 deletions
|
|
@ -38,7 +38,9 @@ jobs:
|
|||
run: cd src/frontend && npm ci && BUILD_FOR_SPRING=true npm run build
|
||||
|
||||
- name: Install Playwright Browsers
|
||||
run: mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps chromium"
|
||||
run: |
|
||||
mvn compile -B --no-transfer-progress
|
||||
mvn exec:java -e -D exec.mainClass=com.microsoft.playwright.CLI -D exec.args="install --with-deps chromium"
|
||||
|
||||
- name: Run Tests
|
||||
run: mvn verify -B --no-transfer-progress
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue