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

This commit is contained in:
Matt 2025-08-06 15:46:06 +02:00
parent d524011060
commit e0b9c5be68
1 changed files with 7 additions and 0 deletions

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