Skip to content

Workflow file for this run

name: UI Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout of the repo
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Docker cache
uses: satackey/action-docker-layer-caching@v0.0.11
continue-on-error: true
- name: setup Hub and nodes and execute the script
run: docker-compose -f "docker-compose.yml" up -d --build
- name wait for the test containers to exit
run: |

Check failure on line 33 in .github/workflows/maven-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/maven-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
chmod a+x wait_for_exit.sh
./wait_for_exit.sh app_test
shell: bash
- name: Stop the grid setup
if: always()
run: |
docker-compose -f "docker-compose.yml" down