From f19be20eb7fd999b4b8df677a4f65903ee74b090 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 14 Apr 2026 19:17:27 +0800 Subject: [PATCH 1/3] ci: run lint in test workflow --- .github/workflows/test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 800b71e..f455f5a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,13 @@ jobs: cache: 'pnpm' - name: Install Dependencies - run: pnpm install && npx playwright install + run: pnpm install + + - name: Run Lint + run: pnpm run lint + + - name: Install Playwright + run: npx playwright install - name: Run Test run: pnpm run build && pnpm run test From 04dbb94c5b98bd16af0e50b748079e35ca0b81df Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 14 Apr 2026 21:11:33 +0800 Subject: [PATCH 2/3] fix --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 921d8e8..08d14dd 100644 --- a/.gitignore +++ b/.gitignore @@ -8,9 +8,11 @@ node_modules dist/ test-results test-temp-* +.rslib # IDE .vscode/* !.vscode/settings.json !.vscode/extensions.json .idea + From a67649a0dcf636a86a90b9080503b677dfeb3c3c Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 14 Apr 2026 21:11:39 +0800 Subject: [PATCH 3/3] fix --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 08d14dd..c9066c6 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,3 @@ test-temp-* !.vscode/settings.json !.vscode/extensions.json .idea -