From bc253c466da624b9412161308d4efc2159797fab Mon Sep 17 00:00:00 2001 From: Baptiste Grob <60621355+baptiste-grob@users.noreply.github.com> Date: Fri, 14 Aug 2020 18:01:15 +0200 Subject: [PATCH] chore(CI): add Typescript check --- .github/workflows/tsc.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 000000000..a6205bae7 --- /dev/null +++ b/.github/workflows/tsc.yml @@ -0,0 +1,22 @@ +name: Typescript check + +on: + push: + branches: + - develop + - master + pull_request: + branches: + - develop + - master + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Install dependencies + run: npm ci + - name: Typescript + run: npm run tsc