Skip to content

chore: add topology crd in reference docs #33

chore: add topology crd in reference docs

chore: add topology crd in reference docs #33

Workflow file for this run

name: Format
on:
pull_request:
jobs:
prettier:
name: prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20.11.1'
- name: Run format check
run: make fmt-check
continue-on-error: true
id: fmt-check
- name: Run formatter and show diff if check failed
if: steps.fmt-check.outcome == 'failure'
run: |
make fmt
git diff
- name: Exit with error if format check failed
if: steps.fmt-check.outcome == 'failure'
run: exit 1