From b9a1ea2cb4424637a6982fa45dd34ad028de5778 Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Thu, 21 May 2026 17:04:12 -0700 Subject: [PATCH] Remove setup-node from CI jobs Node 20 is already in the node:20-bookworm runner image; setup-node was hanging ~5min trying to reach an unconfigured npm cache service. Co-Authored-By: Claude Sonnet 4.6 --- .forgejo/workflows/deploy.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 830e133..84ab00d 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -35,12 +35,6 @@ jobs: - name: ⬇️ Checkout repo uses: https://github.com/actions/checkout@v4 - - name: ⎔ Setup node - uses: https://github.com/actions/setup-node@v4 - with: - node-version-file: '.nvmrc' - cache: 'npm' - - name: 📥 Install dependencies run: npm ci @@ -58,12 +52,6 @@ jobs: - name: ⬇️ Checkout repo uses: https://github.com/actions/checkout@v4 - - name: ⎔ Setup node - uses: https://github.com/actions/setup-node@v4 - with: - node-version-file: '.nvmrc' - cache: 'npm' - - name: 📥 Install dependencies run: npm ci @@ -78,12 +66,6 @@ jobs: - name: ⬇️ Checkout repo uses: https://github.com/actions/checkout@v4 - - name: ⎔ Setup node - uses: https://github.com/actions/setup-node@v4 - with: - node-version-file: '.nvmrc' - cache: 'npm' - - name: 📥 Install dependencies run: npm ci