From 64f97b990a2bf7db19f12f4c62f9fb81dacdeb18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Sun, 8 Aug 2021 03:04:54 +0300 Subject: [PATCH] Added TypeScript Build (Github Workflow) --- .github/workflows/typescript-build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/typescript-build.yml diff --git a/.github/workflows/typescript-build.yml b/.github/workflows/typescript-build.yml new file mode 100644 index 0000000..46b7ea0 --- /dev/null +++ b/.github/workflows/typescript-build.yml @@ -0,0 +1,22 @@ +name: TypeScript Build + +on: + push: + pull_request: + +jobs: + tsc: + name: tsc + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: install node v16 + uses: actions/setup-node@v2.3.1 + with: + node-version: 16 + - name: npm install -g npm + run: npm install -g npm + - name: npm install + run: npm install + - name: tsc + uses: icrawl/action-tsc@v1