Private
Public Access
1
0

Fix Node.js 18 installation - remove conflicting packages first
Some checks failed
CI Pipeline / Rust Format Check (push) Successful in 4s
CI Pipeline / Clippy Lints (push) Successful in 45s
CI Pipeline / Rust Unit Tests (push) Successful in 1m1s
CI Pipeline / Security Audit (push) Successful in 3s
CI Pipeline / Frontend Lint & Type Check (push) Failing after 22s
CI Pipeline / Build .deb & Release (push) Has been skipped

This commit is contained in:
2026-04-27 19:49:37 +00:00
parent 9470c17fb2
commit 8d4a428632

View File

@ -161,11 +161,14 @@ jobs:
- name: Install Node.js 18
run: |
# Remove conflicting packages from old Node.js installation
apt-get remove -y libnode-dev node-gyp npm || true
apt-get autoremove -y || true
# Install Node.js 18 from NodeSource
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
node --version
npm --version
- name: Checkout repository
run: |
TOKEN="${{ secrets.GITEATOKEN }}"