diff --git a/.github/workflows/tests-playwright.yml b/.github/workflows/tests-playwright.yml new file mode 100644 index 000000000..d79106f37 --- /dev/null +++ b/.github/workflows/tests-playwright.yml @@ -0,0 +1,26 @@ +name: Playwright + +on: + workflow_dispatch: + push: + +defaults: + run: + shell: bash + +jobs: + playwright: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version-file: .github/workflows/.python-version + cache: pip + cache-dependency-path: "**/requirements.txt" + run: pip install -r ./tests/playwright/requirements.txt + + - name: Run tests + run: ./tests/playwright/run.sh