From 0740fb31b530e125b1a64ba33bf7428f765c541d Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Mon, 22 Apr 2024 19:55:25 +0200 Subject: Switch package manager to pnpm --- .github/workflows/release.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to '.github/workflows/release.yml') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44a128d..3981172 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,11 +13,22 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - + name: pnpm setup + uses: pnpm/action-setup@v3 + with: + version: 8 + - + name: Use Node.js 20 + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' - name: Build project run: | - yarn install --frozen-lockfile --non-interactive - yarn build + pnpm install --frozen-lockfile + pnpm build - name: Create artifact working-directory: "dist" -- cgit v1.2.3