Skip to content

Video Player PR

Video Player PR #13

Workflow file for this run

name: Video Player PR
on:
workflow_dispatch:
env:
CI: true
jobs:
e2e:
name: install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Node setup
uses: ./.github/actions/node-setup
- name: NPM Install
run: npm install
- name: E2E tests
run: npm run test:e2e
with:

Check failure on line 27 in .github/workflows/e2e_pr.yml

View workflow run for this annotation

GitHub Actions / Video Player PR

Invalid workflow file

The workflow is not valid. .github/workflows/e2e_pr.yml (Line: 27, Col: 9): Unexpected value 'with'
PLAYWRIGHT_HTML_OUTPUT_DIR='./docs/report/${{ github.event.number }}/${{ github.run_number }}'
- name: Upload report to artifact
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 5
- name: Post the link to the report
if: always()
uses: Sibz/[email protected]
with:
authToken: ${{ secrets.GITHUB_TOKEN }}
state: 'success'
sha: ${{ github.event.pull_request.head.sha }}
target_url: https://deploy-preview-${{ github.event.number }}--cld-video-player.netlify.app/docs/report/${{ github.event.number }}/${{ github.run_number }}