From bad42de59d4ba0bdea1044810e3edce8ca10a2ed Mon Sep 17 00:00:00 2001 From: Core Date: Tue, 10 Dec 2024 16:02:52 +0000 Subject: [PATCH] fix: Move action workflow to pnpm --- .github/workflows/cider-chores.yml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cider-chores.yml b/.github/workflows/cider-chores.yml index 8cebe7311..5e7b35910 100644 --- a/.github/workflows/cider-chores.yml +++ b/.github/workflows/cider-chores.yml @@ -23,10 +23,10 @@ jobs: node-version-file: '.nvmrc' - name: Install Dependencies 📦 - run: yarn install + run: pnpm install - name: Build 🏗 - run: yarn dist:all + run: pnpm dist:all - name: Upload Release 🚀 uses: softprops/action-gh-release@v2.0.5 diff --git a/package.json b/package.json index 7ae7b94e5..bc8aab220 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "homepage": "https://cider.sh/", "buildResources": "resources", "scripts": { - "bootstrap": "npx -y check-engine && yarn", + "bootstrap": "npx -y check-engine && pnpm i", "build": "tsc && lessc ./src/renderer/style.less ./src/renderer/style.css", "start": "npm run build && electron ./build/index.js", "dist": "npm run build && electron-builder --publish=never",