Skip to content

Update ESLint

Update ESLint #942

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