From 2fd4e86442396f363d6871688a7987c011cb38eb Mon Sep 17 00:00:00 2001 From: joengy Date: Mon, 23 Mar 2026 00:49:14 +1300 Subject: [PATCH] Fixed linter version issue --- .github/workflows/lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9be3bbb..af6555d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,12 +15,12 @@ jobs: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v3 with: - version: latest + version: 9 - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: pnpm cache-dependency-path: web/pnpm-lock.yaml - run: pnpm install - - run: pnpm lint + - run: pnpm lint -- --dir . - run: pnpm format:check