fix(ci): remove nvm dependency from deploy-ui workflow
Some checks failed
deploy-ui / build-and-deploy (push) Successful in 1m0s
poll-upstream / check (push) Successful in 1s
poll-upstream / check-prerelease (push) Failing after 1s

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) <noreply@anthropic.com>
This commit is contained in:
2026-05-11 14:23:02 +03:00
parent a79eafd70f
commit 661cf574f2

View File

@@ -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