From ed814d252bd335d9a87a71eb7dad6094fc8d998a Mon Sep 17 00:00:00 2001 From: iCrawl Date: Sat, 25 Jan 2020 21:23:51 +0100 Subject: [PATCH] fix: workflow --- .github/workflows/lint.yml | 5 ++++- .github/workflows/tsc.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bb19170..0715471 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,8 +13,11 @@ jobs: with: node-version: 12 + - name: Install pnpm + run: curl -L https://unpkg.com/@pnpm/self-installer | node + - name: Install dependencies - run: yarn install + run: pnpm i - name: Run Lint uses: icrawl/action-eslint@v1 diff --git a/.github/workflows/tsc.yml b/.github/workflows/tsc.yml index 6f582a1..54bc7d5 100644 --- a/.github/workflows/tsc.yml +++ b/.github/workflows/tsc.yml @@ -13,8 +13,11 @@ jobs: with: node-version: 12 + - name: Install pnpm + run: curl -L https://unpkg.com/@pnpm/self-installer | node + - name: Install dependencies - run: yarn install + run: pnpm i - name: Run TSC uses: icrawl/action-tsc@v1