From f939f2dac6bdea0f5bd80884dcfadaa55428ba3f Mon Sep 17 00:00:00 2001 From: Christopher Fenner <9592452+CFenner@users.noreply.github.com> Date: Thu, 4 Jan 2024 09:42:53 +0100 Subject: [PATCH] chore: check package-lock.json (#33) add job --- .github/workflows/validation.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index a160b35..dc23d5e 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -26,3 +26,13 @@ jobs: run: npm clean-install - name: Validate JS Sources run: npm run validate:js + package-lock-is-up-to-date: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: ${{ env.node-version }} + cache: "npm" + - run: npm install --ignore-scripts + - run: git diff --exit-code