From 3661dcfef337b8b4fa21486f9fd1a8e8f11fc31c Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Tue, 30 Jun 2026 18:11:17 -0400 Subject: [PATCH 1/4] setup: switch to voidzero-dev/setup-vp --- .github/setup/action.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index 00716a1..5f83360 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -3,15 +3,9 @@ description: Action that sets up Node and pnpm runs: using: composite steps: - - name: Setup pnpm - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - with: - cache: false - - name: Setup Node - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 + - name: Setup Vite+ + uses: voidzero-dev/setup-vp@2dec1e33f4ab2c6d5bce1b0c4607961bb1a3f7a1 # v1.12.0 with: node-version-file: .nvmrc - package-manager-cache: false - - name: Install dependencies - shell: bash - run: pnpm install --frozen-lockfile + run-install: true + cache: false From c582832dd4ea091d6e6710492db1cc141977398e Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Tue, 30 Jun 2026 18:22:30 -0400 Subject: [PATCH 2/4] Install pnpm globally --- .github/setup/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index 5f83360..bd3387e 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -9,3 +9,5 @@ runs: node-version-file: .nvmrc run-install: true cache: false + - name: Setup pnpm + run: vp install -g pnpm From 4891f0a9fcebeb85ab4d805d828be99de302bee0 Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Tue, 30 Jun 2026 18:25:47 -0400 Subject: [PATCH 3/4] Add missing shell property --- .github/setup/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index bd3387e..acdbca1 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -10,4 +10,5 @@ runs: run-install: true cache: false - name: Setup pnpm + shell: bash run: vp install -g pnpm From 91451eaa35ac3f0029e53632179a35a0ab36af12 Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Fri, 3 Jul 2026 14:41:07 -0400 Subject: [PATCH 4/4] Update action version --- .github/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index acdbca1..2a49775 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -4,7 +4,7 @@ runs: using: composite steps: - name: Setup Vite+ - uses: voidzero-dev/setup-vp@2dec1e33f4ab2c6d5bce1b0c4607961bb1a3f7a1 # v1.12.0 + uses: voidzero-dev/setup-vp@13e7afb99c66525824db54e107d667216e795d37 # v1.14.0 with: node-version-file: .nvmrc run-install: true