From 64fcd524a23f2e090b22e295ec2c31b2bde5fa58 Mon Sep 17 00:00:00 2001 From: Akos Kemives Date: Fri, 18 Nov 2022 18:10:52 +0100 Subject: [PATCH] add GH Action to run install and tsc --- .github/workflows/tsc.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/tsc.yml diff --git a/.github/workflows/tsc.yml b/.github/workflows/tsc.yml new file mode 100644 index 0000000..754f242 --- /dev/null +++ b/.github/workflows/tsc.yml @@ -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 \ No newline at end of file