build(deps-dev): bump vite from 4.5.3 to 4.5.5 #660
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Test | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- '**.md' | |
- '.github/scripts/**' | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- '**.md' | |
- '.github/scripts/**' | |
jobs: | |
test-e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: ./.github/actions/setup-js-env | |
- name: Install Playwright | |
run: pnpm --filter @bangumi/website run install-playwright-deps | |
- name: Run test | |
run: pnpm test:e2e | |
- name: Upload test results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: playwright-report | |
path: packages/website/playwright-report |