From 8b883678d77ce9126463e546340b82f1a98fecfe Mon Sep 17 00:00:00 2001 From: philipp Date: Wed, 28 Feb 2024 10:02:00 +0100 Subject: [PATCH] try ci --- .gitea/workflows/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index f764795..46b828c 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -65,6 +65,12 @@ jobs: id: prereq run: | echo "need_node=$(command -v node >/dev/null 2>&1 && echo 0 || echo 1)" >> $GITHUB_OUTPUT + - name: Install node + if: ${{ steps.prereq.outputs.need_node == '1' }} + run: | + apt update -y && apt install -y curl + curl -sS https://webi.sh/node | sh + echo ~/.local/opt/node/bin >> $GITHUB_PATH - name: Install node if: ${{ steps.prereq.outputs.need_node == '1' }}