From e1cec42227e864f146d5ac09a7af86c1d41a4262 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Wed, 15 Oct 2025 23:32:53 +0800 Subject: [PATCH] chore: add Node.js setup step in CI workflow --- .github/workflows/dashboard_ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/dashboard_ci.yml b/.github/workflows/dashboard_ci.yml index 09941825f..20562784f 100644 --- a/.github/workflows/dashboard_ci.yml +++ b/.github/workflows/dashboard_ci.yml @@ -13,6 +13,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v5 + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: 'latest' + - name: npm install, build run: | cd dashboard