Skip to content

Commit ba7f764

Browse files
committed
ci: fix current failures
Signed-off-by: David Sanders <[email protected]>
1 parent 19da158 commit ba7f764

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v6
2121
- uses: astral-sh/ruff-action@v3
2222
with:
23-
args: "check --select=E,F,PLC,PLE,UP,W,YTT --ignore=E721,PLC0206,PLC0415,PLC1901,S101,UP031 --target-version=py39"
23+
args: "check --select=E,F,PLC,PLE,UP,W,YTT --ignore=E721,F507,PLC0206,PLC0415,PLC1901,S101,UP031 --target-version=py39"
2424
- run: ruff format --check --diff
2525

2626
lint-js:
@@ -67,7 +67,9 @@ jobs:
6767
with:
6868
node-version: 22.x
6969
- name: Update npm
70-
run: npm install npm@latest -g
70+
run: |
71+
npm install npm@~11.10.0 -g # Workaround for https://github.com/npm/cli/issues/9151
72+
npm install npm@latest -g
7173
- name: Install Dependencies
7274
run: npm install
7375
- name: Pack

0 commit comments

Comments
 (0)