From 235f2a02c44807b869b6fd57f039fed2ab48c2ef Mon Sep 17 00:00:00 2001 From: Vladimir Sheremet Date: Sun, 18 Feb 2024 11:30:09 +0100 Subject: [PATCH] chore: move pnpm install --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bcce1e3d..5d93fd1a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,7 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 @@ -23,8 +24,6 @@ jobs: node-version: ${{ matrix.node-version }} cache: pnpm - - uses: pnpm/action-setup@v3 - - run: pnpm install --frozen-lockfile - run: pnpm compile - run: pnpm lint