File tree 3 files changed +40
-7
lines changed
3 files changed +40
-7
lines changed Original file line number Diff line number Diff line change 5
5
6
6
version : 2
7
7
updates :
8
- - package-ecosystem : " npm" # See documentation for possible values
9
- directory : " / " # Location of package manifests
8
+ - package-ecosystem : ' npm' # See documentation for possible values
9
+ directory : ' / ' # Location of package manifests
10
10
schedule :
11
- interval : " monthly"
12
- - package-ecosystem : " github-actions"
13
- directory : " / "
11
+ interval : ' monthly'
12
+ - package-ecosystem : ' github-actions'
13
+ directory : ' / '
14
14
schedule :
15
- interval : " monthly"
15
+ interval : ' monthly'
Original file line number Diff line number Diff line change
1
+ name : PR Check
2
+
3
+ on :
4
+ push :
5
+ branches-ignore :
6
+ - main
7
+
8
+ jobs :
9
+ pr-check :
10
+ name : PR Check
11
+ runs-on : ubuntu-latest
12
+ env :
13
+ HUSKY : 0
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v4
17
+ with :
18
+ fetch-depth : 0
19
+ - name : Setup Node.js
20
+ uses : actions/setup-node@v4
21
+ with :
22
+ node-version : ' lts/*'
23
+ - name : Install dependencies
24
+ run : npm ci
25
+ - name : Lint
26
+ run : npm run lint
27
+ - name : Type check
28
+ run : npm run type-check
29
+ - name : Build
30
+ run : npm run build
31
+ # - name: Test
32
+ # run: npm run test
Original file line number Diff line number Diff line change 10
10
"lint" : " prettier --check ." ,
11
11
"pre-commit" : " lint-staged" ,
12
12
"prepare" : " husky" ,
13
- "semantic-release" : " semantic-release"
13
+ "semantic-release" : " semantic-release" ,
14
+ "type-check" : " tsc --pretty --noEmit"
14
15
},
15
16
"bugs" : " https://github.com/capitnflam/eslint-plugin/issues" ,
16
17
"dependencies" : {
You can’t perform that action at this time.
0 commit comments