Skip to content

Commit

Permalink
SLVUU-129: Start layout server in Cypress steps
Browse files Browse the repository at this point in the history
  • Loading branch information
pling-scottlogic committed Jan 10, 2024
1 parent 92c70c6 commit e050a75
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ jobs:
uses: actions/checkout@v3
- name: Install Node & dependencies
uses: ./.github/actions/setup-vuu-ui
- name: Start layout server
run: cd ./layout-server && mvn spring-boot:run
- name: Run end-to-end tests in Chrome
uses: cypress-io/github-action@bd9dda317ed2d4fbffc808ba6cdcd27823b2a13b
with:
install: false
working-directory: ./vuu-ui
browser: chrome
build: npm run showcase:build
start: npm run showcase:preview
start: |
cd ../layout-server && mvn spring-boot:run
npm run showcase:preview
wait-on: http://localhost:4173, http://localhost:8081
- name: Run end-to-end tests in Edge
uses: cypress-io/github-action@bd9dda317ed2d4fbffc808ba6cdcd27823b2a13b
Expand All @@ -51,7 +51,9 @@ jobs:
working-directory: ./vuu-ui
browser: edge
build: npm run showcase:build
start: npm run showcase:preview
start: |
cd ../layout-server && mvn spring-boot:run
npm run showcase:preview
wait-on: http://localhost:4173, http://localhost:8081

# ensure the vuu example still builds
Expand Down

0 comments on commit e050a75

Please sign in to comment.