File tree 5 files changed +293
-266
lines changed
5 files changed +293
-266
lines changed Original file line number Diff line number Diff line change 10
10
strategy :
11
11
matrix :
12
12
os : [ubuntu-latest, windows-latest]
13
- node-version : [18.18.2 , 20.9.0 ]
13
+ node-version : [18.19.1 , 20.11.1 ]
14
14
steps :
15
15
- name : Set git to use LF
16
16
run : |
27
27
- run : npm run lint
28
28
- run : npm test
29
29
- name : Coveralls
30
- uses : coverallsapp/github-action@master
30
+ uses : coverallsapp/github-action@v2
31
31
with :
32
32
github-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
- nodejs 20.9.0
1
+ nodejs 20.11.1
Original file line number Diff line number Diff line change @@ -35,19 +35,19 @@ Inside `project/.eslintrc.json`:
35
35
// ...
36
36
" rules" : {
37
37
// ...
38
- " workspaces/no-cross-imports" : " error"
38
+ " workspaces/no-cross-imports" : " error" ,
39
39
},
40
40
" overrides" : [
41
41
{
42
42
" files" : [" packages/user-management/**/*" ],
43
43
" rules" : {
44
44
" workspaces/no-cross-imports" : [
45
45
" error" ,
46
- { " allow" : [" @project/user-management-shared" ] }
47
- ]
48
- }
49
- }
50
- ]
46
+ { " allow" : [" @project/user-management-shared" ] },
47
+ ],
48
+ },
49
+ },
50
+ ],
51
51
}
52
52
```
53
53
@@ -82,8 +82,8 @@ Inside `project/.eslintrc.json`:
82
82
// ...
83
83
" rules" : {
84
84
// ...
85
- " workspaces/no-cross-imports" : " error"
86
- }
85
+ " workspaces/no-cross-imports" : " error" ,
86
+ },
87
87
}
88
88
```
89
89
@@ -94,8 +94,8 @@ Inside `project/packages/user-management/.eslintrc.json`:
94
94
" rules" : {
95
95
" workspaces/no-cross-imports" : [
96
96
" error" ,
97
- { " allow" : [" @project/user-management-shared" ] }
98
- ]
99
- }
97
+ { " allow" : [" @project/user-management-shared" ] },
98
+ ],
99
+ },
100
100
}
101
101
```
You can’t perform that action at this time.
0 commit comments