[pre-commit.ci] pre-commit autoupdate #849
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: | |
- main | |
# Trigger on all pull requests | |
pull_request: | |
# Down scope as necessary via https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token | |
permissions: | |
checks: read | |
contents: read | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
# Install your linters here | |
- name: Install project dependencies | |
run: npm install | |
- name: Lint Javascript | |
run: npx eslint docusaurus.config.js --fix | |
- name: Lint CSS | |
run: npx stylelint '**/*.css' |