Skip to content

Doctrine habilitations #225

Doctrine habilitations

Doctrine habilitations #225

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI Checks
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 20
- name: Run formatting scripts
run: make
- name: Expect empty diff
run: exit $(git diff | wc -l)
# Return a non-zero error code if any output file has changed