Skip to content

Commit

Permalink
Add typecheck Github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmoudmoravej authored Nov 8, 2023
1 parent ad73578 commit f0ada49
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: TypeScript Type Check

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install Dependencies
run: yarn install

- name: Run tsc
run: yarn tsc

0 comments on commit f0ada49

Please sign in to comment.