2020-11-24 18:12:41 +00:00
|
|
|
name: "Lint"
|
|
|
|
|
|
|
|
# any branch is useful for testing before a PR is submitted
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-04-26 01:08:54 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-11-24 18:12:41 +00:00
|
|
|
jobs:
|
|
|
|
lint-package-lock:
|
|
|
|
# run on pushes to any branch
|
|
|
|
# run on PRs from external forks
|
|
|
|
if: |
|
2022-01-28 06:33:52 +00:00
|
|
|
(github.event_name != 'pull_request')
|
|
|
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
2020-11-24 18:12:41 +00:00
|
|
|
name: package-lock.json
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-01-28 06:33:52 +00:00
|
|
|
-
|
|
|
|
name: Checkout repository
|
2022-03-01 22:17:16 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-01-28 06:33:52 +00:00
|
|
|
-
|
2022-02-25 15:32:24 +00:00
|
|
|
uses: actions/setup-node@v3
|
2022-01-28 06:33:52 +00:00
|
|
|
with:
|
2023-06-26 17:11:32 +00:00
|
|
|
node-version: 20
|
2022-01-28 06:33:52 +00:00
|
|
|
cache: 'npm'
|
|
|
|
cache-dependency-path: |
|
|
|
|
src/package-lock.json
|
|
|
|
src/bin/doc/package-lock.json
|
|
|
|
-
|
|
|
|
name: Install lockfile-lint
|
|
|
|
run: npm install --no-save lockfile-lint
|
|
|
|
-
|
|
|
|
name: Run lockfile-lint on package-lock.json
|
|
|
|
run: >
|
|
|
|
npx lockfile-lint
|
|
|
|
--path src/package-lock.json
|
|
|
|
--allowed-hosts npm
|
|
|
|
--allowed-schemes https:
|
|
|
|
--allowed-schemes github:
|
2023-07-05 18:48:58 +00:00
|
|
|
--allowed-schemes git+ssh:
|
|
|
|
--allowed-schemes file:
|
|
|
|
--allowed-urls git+ssh://git@github.com/mapbox/node-sqlite3.git#593c9d498be2510d286349134537e3bf89401c4a
|