Update hasura/graphql-engine Docker tag to v2.44.0 #830
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: Check if sources have been prettified | |
on: | |
pull_request: | |
jobs: | |
check_prettify: | |
name: Check if sources have been prettified | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Prettify sources | |
run: ./scripts/prettify.sh | |
- name: Verify that prettify command made no changes | |
run: '[ -z "$(git status --porcelain)" ]' |