add playwright to gh action #68
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
name: Run all tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
- run: yarn install | |
- name: Lint | |
run: yarn lint | |
- name: Type checking | |
run: yarn type-check | |
- name: Run unit tests | |
run: yarn test | |
- name: Install Playwright Browsers | |
run: yarn playwright install --with-deps | |
- name: Run Playwright E2E Tests | |
run: yarn test:e2e | |
publish_report: | |
name: Publish HTML Report | |
# using always() is not ideal here, because it would also run if the workflow was cancelled | |
if: "success() || needs.test.result == 'failure'" | |
needs: [test] | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
env: | |
# Unique URL path for each workflow run attempt | |
HTML_REPORT_URL_PATH: reports/${{ github.ref_name }}/${{ github.run_id }}/${{ github.run_attempt }} | |
steps: | |
- name: Checkout GitHub Pages Branch | |
uses: actions/checkout@v2 | |
with: | |
ref: gh-pages | |
- name: Set Git User | |
# see: https://github.com/actions/checkout/issues/13#issuecomment-724415212 | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
- name: Download zipped HTML report | |
uses: actions/download-artifact@v4 | |
with: | |
name: playwright-report | |
path: ${{ env.HTML_REPORT_URL_PATH }} | |
- name: Push HTML Report | |
timeout-minutes: 3 | |
# commit report, then try push-rebase-loop until it's able to merge the HTML report to the gh-pages branch | |
# this is necessary when this job is running at least twice at the same time (e.g. through two pushes at the same time) | |
run: | | |
git add . | |
git commit -m "workflow: add HTML report for run-id ${{ github.run_id }} (attempt: ${{ github.run_attempt }})" | |
while true; do | |
git pull --rebase | |
if [ $? -ne 0 ]; then | |
echo "Failed to rebase. Please review manually." | |
exit 1 | |
fi | |
git push | |
if [ $? -eq 0 ]; then | |
echo "Successfully pushed HTML report to repo." | |
exit 0 | |
fi | |
done | |
- name: Output Report URL as Worfklow Annotation | |
run: | | |
echo "::notice title=📋 Published Playwright Test Report::" |