Fix workflow in bulletproof contracts #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run E2E Tests | |
| on: | |
| push: | |
| branches: [v3-bulletproof-contracts] | |
| pull_request: | |
| branches: [v3-bulletproof-contracts] | |
| jobs: | |
| run-e2e-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Run docker compose | |
| uses: hoverkraft-tech/compose-action@v2.0.1 | |
| with: | |
| compose-file: "./ui-automation/docker-compose.yml" | |
| up-flags: "--build -d" | |
| - name: Wait for services and run tests | |
| run: | | |
| chmod +x ./ui-automation/start.sh | |
| ./ui-automation/start.sh --ci |