From dc8452fbe08b09016faedcf4808f17555294f9a9 Mon Sep 17 00:00:00 2001 From: Carbrex <95964955+Carbrex@users.noreply.github.com> Date: Sat, 3 Aug 2024 22:38:23 +0530 Subject: [PATCH] Move pnpm install after node setup --- .github/workflows/lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 80e0e3a251192..7a06e615790e3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 with: - run_install: true + run_install: false - uses: actions/setup-node@v4 with: node-version: '20' @@ -28,5 +28,6 @@ jobs: with: languages: javascript - uses: github/codeql-action/analyze@v3 + - run: pnpm install - run: pnpm run lint - run: pnpm run check-format