Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
ricopella committed Oct 26, 2023
1 parent 7b541bd commit 1dd719f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Typecheck

on:
pull_request:
branches:
- main

jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Run typecheck
run: yarn typecheck

0 comments on commit 1dd719f

Please sign in to comment.