From e53e46709b9597eed044ce994cfcef2ebade6a9d Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sun, 12 Jan 2025 21:59:00 +0800 Subject: [PATCH] GHA CI: show installed version Before this change, it wasn't clear which exact version were installed. --- .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