From 0752b4bb42a8e009ca0b24ab51c5a3d28f6fe18c Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Tue, 11 Feb 2025 15:56:04 +0530 Subject: [PATCH] need to add nodejs and npm --- .gitea/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 8770fa2..a0e7d22 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,10 +15,10 @@ jobs: image: archlinux:latest steps: - - name: Install git + - name: Install basic dependencies run: | pacman -Syu --noconfirm - pacman -S --noconfirm git + pacman -S --noconfirm git nodejs npm - name: Checkout code run: | @@ -58,10 +58,10 @@ jobs: image: debian:stable steps: - - name: Install git + - name: Install basic dependencies run: | apt update && apt upgrade -y - apt install -y git + apt install -y git nodejs npm - name: Checkout code run: | @@ -100,10 +100,10 @@ jobs: image: fedora:latest steps: - - name: Install git + - name: Install basic dependencies run: | dnf up -y - dnf install -y git + dnf install -y git nodejs npm - name: Checkout code run: |