Add Node.js installation step to Docker workflow
Some checks failed
Build And Push Image / docker (push) Failing after 1m0s

This commit is contained in:
2025-08-06 15:46:06 +02:00
parent d524011060
commit e0b9c5be68

View File

@@ -6,6 +6,13 @@ jobs:
docker:
runs-on: ubuntu-22.04
steps:
- name: Install Node.js
run: |
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs
node --version
npm --version
- name: Checkout Repository
uses: actions/checkout@v4