File tree Expand file tree Collapse file tree 5 files changed +293
-266
lines changed Expand file tree Collapse file tree 5 files changed +293
-266
lines changed Original file line number Diff line number Diff line change 1010 strategy :
1111 matrix :
1212 os : [ubuntu-latest, windows-latest]
13- node-version : [18.18.2 , 20.9.0 ]
13+ node-version : [18.19.1 , 20.11.1 ]
1414 steps :
1515 - name : Set git to use LF
1616 run : |
2727 - run : npm run lint
2828 - run : npm test
2929 - name : Coveralls
30- uses : coverallsapp/github-action@master
30+ uses : coverallsapp/github-action@v2
3131 with :
3232 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`:
3535 // ...
3636 " rules" : {
3737 // ...
38- " workspaces/no-cross-imports" : " error"
38+ " workspaces/no-cross-imports" : " error" ,
3939 },
4040 " overrides" : [
4141 {
4242 " files" : [" packages/user-management/**/*" ],
4343 " rules" : {
4444 " workspaces/no-cross-imports" : [
4545 " error" ,
46- { " allow" : [" @project/user-management-shared" ] }
47- ]
48- }
49- }
50- ]
46+ { " allow" : [" @project/user-management-shared" ] },
47+ ],
48+ },
49+ },
50+ ],
5151}
5252```
5353
@@ -82,8 +82,8 @@ Inside `project/.eslintrc.json`:
8282 // ...
8383 " rules" : {
8484 // ...
85- " workspaces/no-cross-imports" : " error"
86- }
85+ " workspaces/no-cross-imports" : " error" ,
86+ },
8787}
8888```
8989
@@ -94,8 +94,8 @@ Inside `project/packages/user-management/.eslintrc.json`:
9494 " rules" : {
9595 " workspaces/no-cross-imports" : [
9696 " error" ,
97- { " allow" : [" @project/user-management-shared" ] }
98- ]
99- }
97+ { " allow" : [" @project/user-management-shared" ] },
98+ ],
99+ },
100100}
101101```
You can’t perform that action at this time.
0 commit comments