diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 822aacc..3eb0c2f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,12 +14,12 @@ jobs: uses: actions/setup-node@v3 with: node-version: 20.x - - name: Install pnpm - uses: pnpm/action-setup@v2 - with: - version: 8 - run_install: true - - run: pnpm install --frozen-lockfile - - run: pnpm run build - - run: pnpm test - - run: pnpm run lint + + - name: Install npm + uses: bahmutov/npm-install@v1.10.1 + + - name: Install dependencies + run: npm i + + - name: Lint + run: npm run lint \ No newline at end of file