Skip to content

feat: wizard UI

feat: wizard UI #6

Workflow file for this run

name: Typecheck
on:
push:
branches:
- main
paths:
- ".github/workflows/typecheck.yml"
- "frontend/**"
pull_request:
branches:
- main
paths:
- ".github/workflows/typecheck.yml"
- "frontend/**"
jobs:
typecheck:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run npm install
run: npm install
- name: Run npm typecheck
run: npm run typecheck