Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v6
- uses: astral-sh/ruff-action@v3
with:
args: "check --select=E,F,PLC,PLE,UP,W,YTT --ignore=E721,PLC0206,PLC0415,PLC1901,S101,UP031 --target-version=py39"
args: "check --select=E,F,PLC,PLE,UP,W,YTT --ignore=E721,F507,PLC0206,PLC0415,PLC1901,S101,UP031 --target-version=py39"
- run: ruff format --check --diff

lint-js:
Expand Down Expand Up @@ -67,7 +67,9 @@ jobs:
with:
node-version: 22.x
- name: Update npm
run: npm install npm@latest -g
run: |
npm install npm@~11.10.0 -g # Workaround for https://github.com/npm/cli/issues/9151
npm install npm@latest -g
- name: Install Dependencies
run: npm install
- name: Pack
Expand Down
Loading