Skip to content

Allow manually triggering workflow builds #5409

Allow manually triggering workflow builds

Allow manually triggering workflow builds #5409

Workflow file for this run

name: check-e2e

Check failure on line 1 in .github/workflows/check-e2e.yml

View workflow run for this annotation

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

Invalid workflow file

`push, workflow_dispatch` is not a valid event name
on: push, workflow_dispatch
jobs:
check-e2e:
strategy:
matrix:
browser: [chromium]
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Cache Playwright browsers
uses: actions/cache@v4
id: playwright-dep-cache
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
- name: Install Playwright browsers
if: steps.playwright-dep-cache.outputs.cache-hit != 'true'
run: npx playwright install chromium
- name: Install Radicle binaries
run: |
mkdir -p tests/artifacts;
./scripts/install-binaries;
- name: Run Playwright tests
run: npm run test:e2e -- --project ${{ matrix.browser }}
- name: Upload artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: test-artifacts-${{ runner.os }}
retention-days: 30
if-no-files-found: "ignore"
path: |
tests/artifacts/**/*