Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,25 @@ jobs:

- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '24'

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install dependencies
run: npm install
run: npm ci

- name: Check package-lock.json is up to date
if: matrix.os == 'ubuntu-latest'
run: |
npm install --package-lock-only
if ! git diff --exit-code package-lock.json; then
echo "::error file=package-lock.json::package-lock.json is out of date. Run 'npm install' locally and commit the regenerated package-lock.json."
exit 1
fi

- name: Check for secrets leaks
run: npx secretlint "**/*"
Expand Down
Loading