Bump postcss from 8.3.0 to 8.4.31 in /docs/public #49
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 Coding Style | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-coding-syle: | |
name: Check Coding Style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Check EditorConfig | |
- name: Install eclint | |
run: sudo npm install -g eclint | |
- name: Check EditorConfig style | |
run: eclint check $(git ls-files) |