From c7bb01556789b1a03c590bdc385cf54c5c6725e6 Mon Sep 17 00:00:00 2001 From: DavidDevGt Date: Thu, 5 Sep 2024 14:07:07 -0600 Subject: [PATCH] =?UTF-8?q?Soluci=C3=B3n=20para=20instalar=20Node.js=20man?= =?UTF-8?q?ualmente?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/actions.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/actions.yml b/.gitea/workflows/actions.yml index ea59d64..3721d78 100644 --- a/.gitea/workflows/actions.yml +++ b/.gitea/workflows/actions.yml @@ -15,10 +15,11 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: '18' + - name: Install Node.js manually + run: | + curl -fsSL https://deb.nodesource.com/setup_18.x | bash - + apt-get install -y nodejs + node -v - name: Set up PHP uses: shivammathur/setup-php@v2