Skip to content

View Transition を追加 #40

View Transition を追加

View Transition を追加 #40

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
- name: Run tests
run: |
pnpm run lint:check
pnpm run prettier:check
pnpm run build