From ce08496402675975915e73726076b0b3ef58908b Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sat, 1 May 2021 22:43:58 -0500 Subject: [PATCH] ci: fix lint job --- .github/workflows/CI.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f234624..a747632 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -45,22 +45,14 @@ jobs: - name: Commit lint ✨ uses: wagoid/commitlint-github-action@v2 - - uses: actions/setup-node@v2 - with: - node-version: "14" - - name: Setup PNPM - uses: pnpm/action-setup@master - with: - version: latest - - name: Install dependencies - run: pnpm install + run: npm install - name: Format ✨ - run: pnpm test.format + run: npm run test.format - name: Lint ✨ - run: pnpm test.lint + run: npm run test.lint Release: needs: [Test, Lint]