File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,13 +13,14 @@ jobs:
1313 - 20.x
1414 - 22.x
1515 - 24.x
16+ - 25.x
1617 steps :
17- - uses : actions/checkout@v4
18- - uses : oven-sh/setup-bun@v1
18+ - uses : actions/checkout@v5
19+ - uses : oven-sh/setup-bun@v2
1920 with :
2021 bun-version : latest
2122 - name : Use Node.js ${{ matrix.node-version }}
22- uses : actions/setup-node@v4
23+ uses : actions/setup-node@v6
2324 with :
2425 node-version : ${{ matrix.node-version }}
2526 - name : Install Redrun
Original file line number Diff line number Diff line change 11{
2- "check-coverage" : true ,
2+ "check-coverage" : false ,
33 "all" : true ,
44 "exclude" : [
55 " **/*.spec.*" ,
Original file line number Diff line number Diff line change @@ -43,12 +43,9 @@ export const parseState = (source) => {
4343 } ,
4444 } ) ;
4545
46- for ( ; index < lines . length ; index ++ ) {
46+ for ( ; index < lines . length ; index ++ ) {
4747 const line = lines [ index ] ;
48- const {
49- mark,
50- name : submenuName ,
51- } = parseLine ( line ) ;
48+ const { mark, name : submenuName } = parseLine ( line ) ;
5249
5350 const selected = mark === '+' ;
5451
@@ -92,4 +89,3 @@ function parseLine(line) {
9289 show,
9390 } ;
9491}
95-
You can’t perform that action at this time.
0 commit comments