Skip to content

Merge pull request #79 from walkframe/fix/bugs #289

Merge pull request #79 from walkframe/fix/bugs

Merge pull request #79 from walkframe/fix/bugs #289

Workflow file for this run

name: typecheck
on:
push:
workflow_dispatch:
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup
uses: actions/setup-node@v3
with:
node-version: "16"
- name: cache
uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: install
run: |
yarn install
- name: check
run: |
yarn run tsc