From f4502891b149d086819ea4c9ff2dc10497cc225d Mon Sep 17 00:00:00 2001 From: Erisu Date: Wed, 17 Apr 2024 13:51:05 +0900 Subject: [PATCH] ci(codeql): ignore generated cordova.js --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4473f30..ac96031 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,6 +43,10 @@ jobs: node --version npm --version + # "bin/templates/platform_www/cordova.js" is ignored because it is generated file. + # It contains mixed content from npm package "cordova-js" & "./cordova-js-src". + # The report might not be resovable because of the external package. + # If report related to this repo, it would be detected when scanning "./cordova-js-src". - uses: github/codeql-action/init@v3 with: languages: javascript @@ -51,6 +55,7 @@ jobs: paths-ignore: - coverage - node_modules + - bin/templates/platform_www/cordova.js - name: npm install and test run: npm cit