From ff9df16ab89b6976a2b05d855a17fbae37be882e Mon Sep 17 00:00:00 2001 From: James Sumners Date: Thu, 23 May 2024 15:56:25 -0400 Subject: [PATCH] no need to lint a non-existent lockfile --- .github/workflows/ci-workflow.yml | 2 -- package.json | 1 - 2 files changed, 3 deletions(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 642014504a..26c476cad0 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -58,8 +58,6 @@ jobs: run: npm install - name: Run Linting run: npm run lint - - name: Inspect Lockfile - run: npm run lint:lockfile ci: needs: diff --git a/package.json b/package.json index d6d0c46b20..0923d8e5fc 100644 --- a/package.json +++ b/package.json @@ -161,7 +161,6 @@ "prepare-test": "npm run ssl && npm run docker-env", "lint": "eslint ./*.{js,mjs} lib test bin examples", "lint:fix": "eslint --fix, ./*.{js,mjs} lib test bin examples", - "lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https --validate-integrity", "public-docs": "jsdoc -c ./jsdoc-conf.jsonc && cp examples/shim/*.png out/", "publish-docs": "./bin/publish-docs.sh", "services": "docker compose up -d --wait",