From c48ab0e4b05463cd1e17edf524e7dc9c0267abe9 Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Tue, 11 Feb 2025 15:37:38 +0530 Subject: [PATCH] remove node 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 3ec5dbb..6024c51 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,10 +15,10 @@ jobs: image: archlinux:latest steps: - - name: Install Node.js + - name: Install git run: | pacman -Syu --noconfirm - pacman -S --noconfirm nodejs npm git + pacman -S --noconfirm git - name: Checkout code run: | @@ -58,10 +58,10 @@ jobs: image: debian:stable steps: - - name: Install Node.js + - name: Install git run: | apt update && apt upgrade -y - apt install -y nodejs npm git + apt install -y git - name: Checkout code run: | @@ -100,10 +100,10 @@ jobs: image: fedora:latest steps: - - name: Install Node.js + - name: Install git run: | dnf up -y - dnf install -y nodejs npm git + dnf install -y git - name: Checkout code run: |