apk -> apt
Some checks failed
Sonar / SonarQube (push) Successful in 52s
Sonar / Docker stuff (push) Failing after 1s

This commit is contained in:
Liviu Burcusel 2025-12-09 11:08:21 +01:00
parent 586089a082
commit edc28d166e
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C

View file

@ -55,8 +55,12 @@ jobs:
steps: steps:
- name: Setup Node environment - name: Setup Node environment
run: | run: |
apk update # apk update
apk add nodejs npm # apk add nodejs npm
apt update -y
apt install -y curl ca-certificates
curl -fsSL https://deb.nodesource.com/setup_24.x | bash -
apt install -y nodejs
node --version node --version
npm --version npm --version
- name: Code checkout - name: Code checkout