Skip to content

Commit

Permalink
chore: check package-lock.json (#33)
Browse files Browse the repository at this point in the history
add job
  • Loading branch information
CFenner authored Jan 4, 2024
1 parent 260cb29 commit f939f2d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f939f2d

Please sign in to comment.