Skip to content

Commit

Permalink
add GH Action to run install and tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
akoskm authored Nov 18, 2022
1 parent 0496962 commit 64fcd52
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/tsc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'tsc'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install
run: npm ci
- name: Run TSC
run: npx tsc

0 comments on commit 64fcd52

Please sign in to comment.