From 4686d6709e1b929a2af289d797633d2a0b361152 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Mon, 13 Jan 2025 17:24:08 +0800 Subject: [PATCH] GHA CI: show installed version Before this change, it wasn't clear which exact version were installed. PR #22155. --- .github/workflows/ci_webui.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_webui.yaml b/.github/workflows/ci_webui.yaml index fd6f7134d..2c9d87f4b 100644 --- a/.github/workflows/ci_webui.yaml +++ b/.github/workflows/ci_webui.yaml @@ -28,7 +28,10 @@ jobs: node-version: 'lts/*' - name: Install tools - run: npm install + run: | + npm install + npm ls + npm ls --all - name: Lint code run: npm run lint