datahub/.github/workflows/github-actions-format.yml
dependabot[bot] becfe19fee
chore(deps): bump actions/setup-python from 5 to 6 (#14701)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: david-leifker <114954101+david-leifker@users.noreply.github.com>
2025-09-12 12:11:28 -05:00

31 lines
726 B
YAML

name: github actions format
on:
push:
branches:
- master
paths:
- ".github/**/*.{yml,yaml}"
pull_request:
branches:
- "**"
paths:
- ".github/**/*.{yml,yaml}"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
github_actions_format_check:
name: github_actions_format_check
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: acryldata/sane-checkout-action@v4
- uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: run prettier --check
run: |-
./gradlew :datahub-web-react:githubActionsPrettierCheck