From b83f57df47f13f906d8816fef590d6d5cb821c48 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Mon, 3 Mar 2025 14:58:35 -0800 Subject: [PATCH] Re-adding npm ci because apparently it _is_ required! --- .gitea/workflows/pr.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/pr.yaml b/.gitea/workflows/pr.yaml index 8790db5..8c90a3f 100644 --- a/.gitea/workflows/pr.yaml +++ b/.gitea/workflows/pr.yaml @@ -18,6 +18,13 @@ jobs: # super-linter needs the full git history to get the # list of files that changed across commits fetch-depth: 0 + + # This _shouldn't_ be necessary, since `node_modules` are checked-in? + # But, adding it because, without it, I get `Cannot find module '/workspace/scubbo/commit-report-sync/node_modules/.../...out/index.js'. + # Please verify that the package.json has a valid "main" entry + # Weird! + - name: Install + run: npm ci # Usually I would... # - name: Super Linter