28 lines
543 B
YAML
28 lines
543 B
YAML
name: music-room Playwright
|
|
|
|
on:
|
|
push:
|
|
branches: [master, main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
playwright:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 45
|
|
steps:
|
|
- name: Checkout repo
|
|
run: |
|
|
git clone http://127.0.0.1:3006/weli/huike-e2e-moicen.git /work
|
|
cd /work
|
|
|
|
- name: Install deps & Chromium
|
|
run: |
|
|
cd /work
|
|
npm ci
|
|
npx playwright install chromium --with-deps
|
|
|
|
- name: Run tests
|
|
run: |
|
|
cd /work
|
|
npx playwright test
|