need to add nodejs and npm

This commit is contained in:
2025-02-11 15:56:04 +05:30
parent aeaa20d3e9
commit 0752b4bb42

View File

@@ -15,10 +15,10 @@ jobs:
image: archlinux:latest image: archlinux:latest
steps: steps:
- name: Install git - name: Install basic dependencies
run: | run: |
pacman -Syu --noconfirm pacman -Syu --noconfirm
pacman -S --noconfirm git pacman -S --noconfirm git nodejs npm
- name: Checkout code - name: Checkout code
run: | run: |
@@ -58,10 +58,10 @@ jobs:
image: debian:stable image: debian:stable
steps: steps:
- name: Install git - name: Install basic dependencies
run: | run: |
apt update && apt upgrade -y apt update && apt upgrade -y
apt install -y git apt install -y git nodejs npm
- name: Checkout code - name: Checkout code
run: | run: |
@@ -100,10 +100,10 @@ jobs:
image: fedora:latest image: fedora:latest
steps: steps:
- name: Install git - name: Install basic dependencies
run: | run: |
dnf up -y dnf up -y
dnf install -y git dnf install -y git nodejs npm
- name: Checkout code - name: Checkout code
run: | run: |