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:
|
||||
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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue