File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
1010 fail-fast : false
1111 matrix :
1212 node-version :
13+ - 24
1314 - 20
14- - 18
1515 steps :
16- - uses : actions/checkout@v4
17- - uses : actions/setup-node@v4
16+ - uses : actions/checkout@v6
17+ - uses : actions/setup-node@v6
1818 with :
1919 node-version : ${{ matrix.node-version }}
2020 - run : npm install
Original file line number Diff line number Diff line change 1717 },
1818 "sideEffects" : false ,
1919 "engines" : {
20- "node" : " >=18 "
20+ "node" : " >=20 "
2121 },
2222 "scripts" : {
2323 "test" : " xo && ava && tsd"
5151 " resolve"
5252 ],
5353 "dependencies" : {
54- "ini" : " 4.1.1 "
54+ "ini" : " 6.0.0 "
5555 },
5656 "devDependencies" : {
57- "ava" : " ^5.3 .1" ,
58- "execa" : " ^8.0 .1" ,
59- "tsd" : " ^0.29 .0" ,
60- "xo" : " ^0.56.0 "
57+ "ava" : " ^6.4 .1" ,
58+ "execa" : " ^9.6 .1" ,
59+ "tsd" : " ^0.33 .0" ,
60+ "xo" : " ^1.2.3 "
6161 }
6262}
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ test('pnpm', t => {
7272
7373test ( 'pnpm.packages is inside prefix' , t => {
7474 t . true ( globalDirectory . pnpm . packages . startsWith ( globalDirectory . pnpm . prefix ) ) ;
75- t . true ( globalDirectory . pnpm . packages . endsWith ( '/global/5/node_modules' ) || globalDirectory . pnpm . packages . endsWith ( '\\ global\\5\\ node_modules' ) ) ;
75+ t . true ( globalDirectory . pnpm . packages . endsWith ( '/global/5/node_modules' ) || globalDirectory . pnpm . packages . endsWith ( String . raw `\ global\5\ node_modules` ) ) ;
7676} ) ;
7777
7878test . serial ( 'pnpm with PNPM_HOME' , async t => {
You can’t perform that action at this time.
0 commit comments