From a8a97d9e85495c4b9cb41fe5a5734fadc8b924fb Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Wed, 26 Jul 2023 14:30:37 +0200 Subject: [PATCH] fix: use pnpm in actions Signed-off-by: Sefa Eyeoglu --- .github/workflows/build.yml | 4 ++-- .github/workflows/update-contributors.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8735c800b..3ed31e964 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,6 @@ jobs: - name: Install dependencies & build run: | - npm ci - npm run build + pnpm install --frozen-lockfile + pnpm run build diff --git a/.github/workflows/update-contributors.yml b/.github/workflows/update-contributors.yml index 4620fcef3..27271d9a1 100644 --- a/.github/workflows/update-contributors.yml +++ b/.github/workflows/update-contributors.yml @@ -19,8 +19,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - npm ci - npm run update-contributors + pnpm install --frozen-lockfile + pnpm run update-contributors - name: Commit files run: |