From 576aa5a1233d4340e9ef80e6866d1725d048366d Mon Sep 17 00:00:00 2001 From: Eriq Taing Date: Sun, 22 Jun 2025 20:11:35 -0400 Subject: [PATCH] Add nodejs to container for install --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b51e455..88f04b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,11 @@ jobs: # !! Add your recipes here - recipe.yml steps: + - name: Install needed packages + shell: bash + run: | + sudo apt-get -y install nodejs + # the build is fully handled by the reusable github action - name: Build Custom Image uses: blue-build/github-action@v1.8