Skip to content

CI: Fix wrong syntax (#62) #16

CI: Fix wrong syntax (#62)

CI: Fix wrong syntax (#62) #16

Workflow file for this run

name: E2E
on:
workflow_dispatch:
push:
branches: main
jobs:
smoke-test:
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 60
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Install headless browser
run: pnpm exec playwright install --with-deps
- name: Smoke test
run: pnpm run test:e2e
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report/
retention-days: 30- name: Deploy

Check failure on line 42 in .github/workflows/e2e.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/e2e.yml

Invalid workflow file

You have an error in your yaml syntax on line 42
- name: Deploy GH Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./playwright-report