Version update v1.3.5 (master) 2 #54
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
# e2e test for transcoder | |
name: End-to-End Tests | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
Run-wpe2e-TestCase: | |
# The type of runner that the job will run on | |
name: Playwright Tests | |
runs-on: ubuntu-latest | |
env: | |
SHA: ${{ github.event.pull_request.head.sha }} | |
COMMIT_SHA: ${{ github.sha }} | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
working-directory: ./tests/e2e-playwright | |
TESRESULT_TOKEN: ${{ secrets.TESRESULT_TOKEN }} | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 17 | |
cache: "npm" | |
cache-dependency-path: tests/e2e-playwright/package-lock.json | |
- name: Install npm dependencies | |
run: npm install | |
working-directory: ${{env.working-directory}} | |
- name: Build Playwright utils dependencies | |
run: npm run build | |
working-directory: ${{env.working-directory}} | |
- name: Install browser | |
run: npx playwright install chromium | |
working-directory: ${{env.working-directory}} | |
- name: Run End to End tests | |
run: npm run test-e2e:playwright -- test | |
working-directory: ${{env.working-directory}} | |
- name: run PR status | |
if: ${{ always() }} | |
run: node ./tests/e2e-playwright/bin/pr-status.js | |
working-directory: ${{env.working_directory}} | |
- name: Make reports available | |
uses: actions/upload-artifact@v2 | |
if: success() || failure() | |
with: | |
name: playwright-report | |
retention-days: 2 | |
path: | | |
${{ github.workspace }}/playwright-report |