Skip to content

Temporary farm page fix #1486

Temporary farm page fix

Temporary farm page fix #1486

Workflow file for this run

name: Typecheck
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Cache node_modules
uses: actions/cache@v2
with:
path: .yarn/
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install
- name: Codegen
run: yarn typechain
- name: Run typechecking
run: yarn tsc