From 661cf574f2245c1fefef25bb326522f4eb4e0dc4 Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Mon, 11 May 2026 14:23:02 +0300 Subject: [PATCH] fix(ci): remove nvm dependency from deploy-ui workflow The fedora-43 base image now includes nodejs and npm, so the nvm runner label and Node.js setup step are no longer needed. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/deploy-ui.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.gitea/workflows/deploy-ui.yml b/.gitea/workflows/deploy-ui.yml index 7e69b80..d7055aa 100644 --- a/.gitea/workflows/deploy-ui.yml +++ b/.gitea/workflows/deploy-ui.yml @@ -10,21 +10,12 @@ on: jobs: build-and-deploy: - runs-on: - - fedora-43 - - nvm + runs-on: fedora-43 env: RPM_REPO_HOST: oolon.kosherinata.internal steps: - uses: actions/checkout@v4 - - name: Set up Node.js - run: | - export NVM_DIR="${HOME}/.nvm" - [ -s "${NVM_DIR}/nvm.sh" ] && . "${NVM_DIR}/nvm.sh" - nvm install --lts - echo "$(dirname "$(nvm which current)")" >> "$GITHUB_PATH" - - name: Install dependencies run: | cd ui