Use color on stderr in CLI even when piping to stdout (#43450) #542
This file contains hidden or 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
| # Be sure to update .mergify.yml rules if adding/renaming any jobs. | |
| name: Prettier | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| check: | |
| name: Prettier | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - run: scripts/check_prettier_matches_dprint.py | |
| - name: Get dprint version | |
| run: | | |
| echo DPRINT_VERSION=$(node -p "require('./npm-packages/lint/package.json').devDependencies['dprint']") >> $GITHUB_ENV | |
| - uses: dprint/[email protected] | |
| with: | |
| dprint-version: ${{ env.DPRINT_VERSION }} |