Skip to content

Commit e0d67e8

Browse files
authored
Merge pull request #125 from sr2echa/auth
Fix CI/CD build script fails
2 parents 32f7871 + a4e272b commit e0d67e8

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
node-version: 'lts/*'
2121
cache: 'pnpm'
2222

23-
- name: Setup pnpm
24-
uses: pnpm/action-setup@v4
25-
with:
26-
version: 9
23+
- name: Enable corepack and prepare pnpm
24+
run: |
25+
corepack enable
26+
corepack prepare pnpm@9 --activate
2727
2828
- name: Install deps
2929
run: pnpm install --frozen-lockfile

backend/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ dev = [
2222
[tool.ruff]
2323
target-version = "py312"
2424
line-length = 88
25+
26+
[tool.ruff.lint]
2527
select = ["E", "F", "I", "N", "W", "B", "C4", "UP", "ARG", "SIM", "TCH", "TID", "Q"]
2628
ignore = ["E501", "B008", "F401", "F841", "W293", "ARG001", "N815"]
2729

0 commit comments

Comments
 (0)