diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 77e58f547..c5b9a324d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,8 +18,10 @@ jobs: uses: actions/checkout@v3 - name: Yarn install run: yarn - - name: Typescript & Lint check + - name: Lint check run: yarn lint + - name: Type check + run: yarn typecheck testing: name: Run tests runs-on: ubuntu-latest |