We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7304814 commit b4faab1Copy full SHA for b4faab1
.github/workflows/ci.yml
@@ -5,9 +5,9 @@ name: CI
5
# 2. pull_request: 针对 main 或 master 分支创建/更新 PR 时触发
6
on:
7
push:
8
- branches: [ "main", "master" ]
+ branches: [main, master]
9
pull_request:
10
11
12
jobs:
13
test-and-lint:
@@ -54,4 +54,4 @@ jobs:
54
with:
55
name: coverage-report
56
path: coverage/
57
- retention-days: 7
+ retention-days: 7
package.json
@@ -31,7 +31,7 @@
31
"dev": "tsdown --watch",
32
"test": "vitest",
33
"test:coverage": "vitest run --coverage",
34
- "lint": "eslint .",
+ "lint": "eslint . --fix",
35
"typecheck": "tsc --noEmit",
36
"prepublishOnly": "bun run build"
37
},
0 commit comments