From 40f1dbbf99fd6bfc1eb775dfe2813a979d2ca22b Mon Sep 17 00:00:00 2001 From: Marvin Date: Tue, 25 Aug 2026 20:01:53 +0000 Subject: [PATCH] ci: install node before checkout --- .gitea/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2bee7a6..88973fe 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,6 +9,8 @@ jobs: build: runs-on: amd64 steps: + - name: Install node + run: apt-get update && apt-get install -y nodejs npm || true - uses: actions/checkout@v4 - name: Install Rust uses: dtolnay/rust-toolchain@stable