Rebase 3.x #2364
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: Acceptance Tests | |
| on: | |
| push: | |
| branches: | |
| - '3.x' | |
| pull_request: | |
| branches: | |
| - '**' | |
| env: | |
| CI: true | |
| # Force terminal colors. @see https://www.npmjs.com/package/colors | |
| FORCE_COLOR: 1 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout Repository | |
| uses: actions/checkout@v5 | |
| # Install Docker Compose | |
| - name: Install Docker Compose | |
| run: | | |
| sudo apt-get update --allow-releaseinfo-change | |
| sudo apt-get install -y docker-compose | |
| # Build Docker images to include latest code changes | |
| - name: Build Docker Images | |
| run: docker-compose build | |
| working-directory: test | |
| # Run WebDriverIO acceptance tests using docker-compose | |
| - name: Run WebDriverIO Acceptance Tests | |
| run: docker-compose run --rm test-acceptance.webdriverio | |
| working-directory: test |