Skip to content

relax version constraints #617

relax version constraints

relax version constraints #617

Workflow file for this run

name: Has Changes
on:
push:
jobs:
has-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node
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
with:
script: |
core.setFailed('cssdb generated files have changed')