From 61022b4066ac181f7252e0d301a4b1b7e8910071 Mon Sep 17 00:00:00 2001 From: Gildas Garcia <1122076+djhi@users.noreply.github.com> Date: Wed, 17 Apr 2024 17:55:03 +0200 Subject: [PATCH] Add Type check to CI --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74dbe8c..89f3951 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,18 @@ jobs: run: npx @biomejs/biome lint src - name: Format Check run: npx @biomejs/biome format src + typecheck: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Use Node.js LTS + uses: actions/setup-node@v1 + with: + node-version: '18.x' + - uses: bahmutov/npm-install@v1 + - name: Typecheck + run: npx tsc unit-test: runs-on: ubuntu-latest steps: