From c5a4e9d07d50e1bdd82d0cd10c9bdb575670b0e3 Mon Sep 17 00:00:00 2001 From: Aryan Goharzad Date: Mon, 30 Jan 2023 15:44:20 -0500 Subject: [PATCH] separate checks --- .github/workflows/lint.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e37198380d..954caba9fe 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,7 +7,7 @@ on: jobs: linting: - name: Run linters + name: Lint runs-on: ubuntu-latest steps: - name: Check out Git repository @@ -21,10 +21,18 @@ jobs: prettier: true - name: Lint check run: yarn lint + typecheck: + name: Type Check + runs-on: ubuntu-latest + steps: + - name: Check out Git repository + uses: actions/checkout@v2 + - name: Yarn install + run: yarn - name: Type check run: yarn tsc testing: - name: Run tests + name: Tests runs-on: ubuntu-latest steps: - name: Install node 18