From 8f647e7cc9deecde5ef21e035700012faf8bf374 Mon Sep 17 00:00:00 2001 From: hainenber Date: Sat, 28 Feb 2026 17:01:41 +0700 Subject: [PATCH] chore(ci): setup Node version based on superset-websocket's .nvmrc Signed-off-by: hainenber --- .github/workflows/superset-websocket.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/superset-websocket.yml b/.github/workflows/superset-websocket.yml index c4e8171dd9a..9d485c61cf0 100644 --- a/.github/workflows/superset-websocket.yml +++ b/.github/workflows/superset-websocket.yml @@ -24,6 +24,10 @@ jobs: uses: actions/checkout@v6 with: persist-credentials: false + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version-file: './superset-websocket/.nvmrc' - name: Install dependencies working-directory: ./superset-websocket run: npm ci