Bump postcss-custom-media from 10.0.1 to 11.0.4 #12693
This file contains 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
name: Check for non committable changes | |
on: | |
pull_request: | |
paths: | |
- 'polaris-react/**' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
playground: | |
- 'polaris-react/playground/Playground.tsx' | |
- name: Check for changes to Playground.tsx | |
if: steps.filter.outputs.playground == 'true' | |
run: | | |
echo "Please remove changes from Playground.tsx before committing" | |
exit 1 |