Skip to content

Create js-ts-formatter-check.yml #2

Create js-ts-formatter-check.yml

Create js-ts-formatter-check.yml #2

name: Black Formatting Check
on:
push: {}
pull_request: {}
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable # Official Black action
with:
options: "--check --verbose" # Check for formatting issues only
src: '.' # Path to your Python source code (optional)