Skip to content

Merge commit '3e1e0b56bf9ff83ee932de610369f30a0be27c90' into dev/beta #1028

Merge commit '3e1e0b56bf9ff83ee932de610369f30a0be27c90' into dev/beta

Merge commit '3e1e0b56bf9ff83ee932de610369f30a0be27c90' into dev/beta #1028

Workflow file for this run

name: Type Check
on:
push:
branches:
- "**"
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize
jobs:
check:
timeout-minutes: 25
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18.17.0]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install
- run: pnpm run build
- run: pnpm run type-check