CI: update pytest setup and show annotations on PRs #3661
Workflow file for this run
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
# @url https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: Lint Frontend (run `./bw-dev stylelint` to fix css errors) | |
on: | |
push: | |
branches: [ main, ci, frontend ] | |
paths: | |
- '.github/workflows/**' | |
- 'static/**' | |
- '.eslintrc' | |
- '.stylelintrc.js' | |
pull_request: | |
branches: [ main, ci, frontend ] | |
jobs: | |
lint: | |
name: Lint with stylelint and ESLint. | |
runs-on: ubuntu-20.04 | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it. | |
- uses: actions/checkout@v3 | |
- name: Install modules | |
run: npm install stylelint stylelint-config-recommended stylelint-config-standard stylelint-order eslint | |
# See .stylelintignore for files that are not linted. | |
# - name: Run stylelint | |
# run: > | |
# npx stylelint bookwyrm/static/css/*.scss bookwyrm/static/css/bookwyrm/**/*.scss \ | |
# --config dev-tools/.stylelintrc.js | |
# See .eslintignore for files that are not linted. | |
- name: Run ESLint | |
run: > | |
npx eslint bookwyrm/static \ | |
--ext .js,.jsx,.ts,.tsx |