From 5dfffc5ac86b59aa283c3a309ae4d771ef02d258 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Mon, 1 Jun 2026 22:01:58 +0200 Subject: [PATCH] fix issue node --- .gitea/workflows/build-cpp.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build-cpp.yml b/.gitea/workflows/build-cpp.yml index b470eff..292a7be 100644 --- a/.gitea/workflows/build-cpp.yml +++ b/.gitea/workflows/build-cpp.yml @@ -9,13 +9,14 @@ jobs: container: archlinux:latest steps: + - name: Install node & git + run: pacman -Syu --noconfirm nodejs git + - name: Checkout uses: actions/checkout@v4 - - name: Install tools - run: | - pacman -Syu --noconfirm - pacman -S --noconfirm \ + - name: Install build tools + run: pacman -S --noconfirm \ base-devel \ cmake \ ninja \ @@ -28,8 +29,7 @@ jobs: libqalculate \ glib2 \ aubio \ - cava \ - git + cava - name: Configure run: cmake -S . -B build -G Ninja