Skip to content

build

build #916

Workflow file for this run

name: Has Changes
on:
push:
jobs:
has-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
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