25 lines
491 B
YAML
25 lines
491 B
YAML
name: music-room Playwright
|
|
|
|
on:
|
|
push:
|
|
branches: [master, main]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
playwright:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 45
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install deps & Chromium
|
|
run: |
|
|
npm ci
|
|
npx playwright install chromium --with-deps
|
|
|
|
- name: Playwright tests
|
|
env:
|
|
MOICEN_E2E_UNIONID: ${{ secrets.MOICEN_E2E_UNIONID }}
|
|
run: npx playwright test
|