From 2c2a97de73755c8db88c5c1547b17cffb37d3535 Mon Sep 17 00:00:00 2001 From: zomars Date: Wed, 9 Feb 2022 15:24:14 -0700 Subject: [PATCH] Update lint action --- .github/workflows/lint.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6ad1735cc4..45c17cbdac 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,12 +13,15 @@ jobs: fetch-depth: 0 - name: Use Node.js 14.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: version: 14.x - name: Install deps - uses: bahmutov/npm-install@v1 + run: yarn - name: Lint run: yarn lint + + - name: Type Checks + run: tsc