Skip to content

Add: VRT(e2eテスト)を追加 #34

Add: VRT(e2eテスト)を追加

Add: VRT(e2eテスト)を追加 #34

Workflow file for this run

name: Check format and test build
'on':
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 8.10.2
- name: Install dependencies
run: |
pnpm i --frozen-lockfile
sudo apt-get install fonts-noto-cjk
- name: Run tests
run: |
pnpm run lint:check
pnpm run prettier:check
pnpm run test
pnpm run build
- name: Upload playwright report
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: playwright-report/
retention-days: 1