From 7e927f11860a7780a566ad243f4d49f7bc3cd5f5 Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Sun, 28 Apr 2024 18:48:52 +0200 Subject: [PATCH] Install pnpm for windows --- .github/workflows/alpha.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 334700dcc..682eff8e1 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -378,18 +378,22 @@ jobs: needs: [build-data] steps: - - uses: trickypr/checkout@main - with: - submodules: recursive - - name: Install Node.js and pnpm uses: actions/setup-node@v3 with: node-version: 16 + - uses: actions/checkout@v3 + + - uses: pnpm/action-setup@v2 + name: Install pnpm + id: pnpm-install + with: + version: 8 + run_install: false + - name: Install dependencies run: | - npm install -g pnpm pnpm i - name: Load gluon CI setup