Bump the all-dependencies group with 2 updates #772
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Has Changes | |
on: | |
push: | |
jobs: | |
has-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- run: npm ci --ignore-scripts | |
- run: npm run preparesite | |
- name: Check if there are changes | |
id: changes | |
run: git diff --quiet --exit-code | |
- name: Process changes | |
if: failure() | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.setFailed('cssdb generated files have changed') |