Skip to content

Feature/play/zoomlogin refactor1 #86

Feature/play/zoomlogin refactor1

Feature/play/zoomlogin refactor1 #86

Workflow file for this run

name: Playwright e2e Tests
on:
push:
branches: [main]
pull_request_target:
types: [labeled, opened, synchronize, reopened]
concurrency:
group: environment-${{ github.ref }}
cancel-in-progress: true
jobs:
playwright-run:
runs-on: ubuntu-latest
if: github.repository == 'reactplay/react-play'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Packages
run: |
npm install --legacy-peer-deps
# Install NPM dependencies, cache them correctly
# and run all Playwright tests
- name: Playwright run
uses: actions/checkout@v4
with:
install-command: |
npm install --legacy-peer-deps
start: npm start
wait-on: "http://localhost:3000"
browser: chrome
env:
# pass GitHub token to detect new build vs re-run build

Check failure on line 34 in .github/workflows/playwright-e2e.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/playwright-e2e.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: yarn e2e
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30