Skip to content

allow overriding the chain used #24

allow overriding the chain used

allow overriding the chain used #24

Workflow file for this run

name: Check formatting
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Install npm dependencies
run: npm install
- name: Format files
run: npm run precommit
- name: Check diff
run: |
git diff
test -z "$(git status -s)"