diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 21e0ef0b..be271bb3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -53,20 +53,14 @@ jobs: - name: Commit lint ✨ uses: wagoid/commitlint-github-action@v2 - - uses: UziTech/action-setup-atom@v1 - - name: Setup PNPM - uses: pnpm/action-setup@v1.2.1 - 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]