chore: simplify job names in GitHub Actions workflow

This commit is contained in:
Anish Sarkar 2026-05-20 19:29:09 +05:30
parent 2de8ea5501
commit a786574484

View file

@ -11,7 +11,7 @@ concurrency:
jobs: jobs:
file-quality: file-quality:
name: File Quality Checks name: File Quality
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.pull_request.draft == false if: github.event.pull_request.draft == false
@ -125,7 +125,7 @@ jobs:
exit ${exit_code:-0} exit ${exit_code:-0}
python-backend: python-backend:
name: Python Backend Quality name: Backend Quality
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.pull_request.draft == false if: github.event.pull_request.draft == false
@ -206,7 +206,7 @@ jobs:
exit ${exit_code:-0} exit ${exit_code:-0}
typescript-frontend: typescript-frontend:
name: TypeScript/JavaScript Quality name: Frontend Quality
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event.pull_request.draft == false if: github.event.pull_request.draft == false