CI: Use partial runs for prettier (#69546)
This commit is contained in:
parent
4fe6b0c140
commit
6773c252d2
1 changed files with 9 additions and 1 deletions
10
.github/workflows/ci.yaml
vendored
10
.github/workflows/ci.yaml
vendored
|
@ -435,11 +435,19 @@ jobs:
|
||||||
. venv/bin/activate
|
. venv/bin/activate
|
||||||
pre-commit run --hook-stage manual check-json --all-files
|
pre-commit run --hook-stage manual check-json --all-files
|
||||||
|
|
||||||
- name: Run prettier
|
- name: Run prettier (fully)
|
||||||
|
if: needs.changes.outputs.test_full_suite == 'true'
|
||||||
run: |
|
run: |
|
||||||
. venv/bin/activate
|
. venv/bin/activate
|
||||||
pre-commit run --hook-stage manual prettier --all-files
|
pre-commit run --hook-stage manual prettier --all-files
|
||||||
|
|
||||||
|
- name: Run prettier (partially)
|
||||||
|
if: needs.changes.outputs.test_full_suite == 'false'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
. venv/bin/activate
|
||||||
|
pre-commit run --hook-stage manual prettier --files {homeassistant,tests}/components/${{ needs.changes.outputs.integrations_glob }}/**/*
|
||||||
|
|
||||||
- name: Register check executables problem matcher
|
- name: Register check executables problem matcher
|
||||||
run: |
|
run: |
|
||||||
echo "::add-matcher::.github/workflows/matchers/check-executables-have-shebangs.json"
|
echo "::add-matcher::.github/workflows/matchers/check-executables-have-shebangs.json"
|
||||||
|
|
Loading…
Add table
Reference in a new issue