Reload hasura metadata after all services are running #394
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Doctoc | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
verify-doctoc: | |
name: Verifies whether table of contents has been updated | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run doctoc on README | |
run: npx doctoc README.md | |
- name: Verify that doctoc command made no changes, so ToC is up to date | |
run: '[ -z "$(git status --porcelain)" ]' |