WIP - Adding Playwright Tests #2
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: Playwright Tests | |
# todo, this GitHub Action should either be Triggered by Pantheon's build process | |
# phoning back to GitHub Actions after the deployment completes | |
# Or the GitHub Action will need to poll somehow that the deployment has completed. | |
on: | |
push: | |
branches: [ main, master ] | |
pull_request: | |
branches: [ main, master ] | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: cd tests && npm ci | |
- name: Install Playwright Browsers | |
run: cd tests && npx playwright install --with-deps | |
- name: Run Playwright tests | |
run: cd tests && npx playwright test | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |