chore(deps): update dependency postcss to v8.4.47 #11454
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: Lint | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
# Prettier must be in `package.json` | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Run Prettier | |
uses: wearerequired/lint-action@v1 | |
with: | |
prettier: true | |
prettier_extensions: "css,html,js,json,jsx,md,sass,scss,ts,tsx,vue" | |
commit_message: "style: 🎨 fix code style issues with ${linter}" | |
auto_fix: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
git_email: "[email protected]" | |
git_name: "fairdataihub-bot" | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9.7 | |
- name: Install black | |
run: pip install black | |
- name: Run Black | |
uses: wearerequired/lint-action@v1 | |
with: | |
black: true | |
black_dir: "./src/pysoda" | |
commit_message: "style: 🎨 fix code style issues with ${linter}" | |
auto_fix: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
git_email: "[email protected]" | |
git_name: "fairdataihub-bot" |