Skip to content

chore/migration cleanup #32

chore/migration cleanup

chore/migration cleanup #32

Workflow file for this run

name: 'Check PR'
on:
workflow_dispatch:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
check-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm run setup
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck