test: inject any SDK configuration overrides as scope tags (#5702) #1184
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
# We want to run dprint for only the files it checks without running the other linters, which are | |
# expensive. For example, dprint should run for markdown changes, but pod lib lint doesn't need to | |
# run for markdown changes. Therefore, we run it in an extra workflow. | |
name: lint-dprint | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**/*.yml" | |
- "**/*.yaml" | |
- "**/*.json" | |
- "**/*.md" | |
pull_request: | |
paths: | |
- "**/*.yml" | |
- "**/*.yaml" | |
- "**/*.json" | |
- "**/*.md" | |
jobs: | |
lint-dprint: | |
name: Run dprint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dprint/check@v2.3 |