npm: bump release-it from 14.14.3 to 16.2.1 #5335
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
name: Run linters | |
on: | |
workflow_dispatch: | |
push: | |
env: | |
MAX_LINE_LENGTH: 110 | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
fetch-depth: 1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- name: Install flake8 | |
run: | | |
pip install flake8 pycodestyle | |
- name: Lint with flake8 | |
run: | | |
# one pass for show-stopper syntax errors or undefined names | |
flake8 . --count --show-source --statistics | |
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude ./ckan/include/rjsmin.py,./contrib/cookiecutter/* | |
# one pass for small stylistic things | |
flake8 . --count --max-line-length="$MAX_LINE_LENGTH" --statistics | |
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics |