Gene header redesign #637
Workflow file for this run
This file contains 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: Webdriver Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Docker images | |
run: docker compose build | |
- name: Run Docker containers | |
run: | | |
docker compose up -d | |
docker compose run --rm wdio | |
- name: Archive screenshots | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: visual-regression-screenshots | |
path: ./src/test/javascript/screenshots |