Add Node.js installation step to Docker workflow
Build And Push Image / docker (push) Failing after 1m0s
Details
Build And Push Image / docker (push) Failing after 1m0s
Details
This commit is contained in:
parent
d524011060
commit
e0b9c5be68
|
|
@ -6,6 +6,13 @@ jobs:
|
||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
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
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue