File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -95,15 +95,16 @@ const projectRunners = {
9595 await run ( 'bun' , [ 'test' ] ) ;
9696 }
9797 } ,
98- deno : async ( ) => {
99- // we don't need to explicitly install the package here
100- // because our deno setup relies on `rootDir/deno` to exist
101- // which is an artifact produced from our build process
102- await run ( 'deno' , [ 'task' , 'install' ] ) ;
103- await run ( 'deno' , [ 'task' , 'check' ] ) ;
104-
105- if ( state . live ) await run ( 'deno' , [ 'task' , 'test' ] ) ;
106- } ,
98+ // Temporarily comment this out until we can test with JSR transformations end-to-end.
99+ // deno: async () => {
100+ // // we don't need to explicitly install the package here
101+ // // because our deno setup relies on `rootDir/deno` to exist
102+ // // which is an artifact produced from our build process
103+ // await run('deno', ['task', 'install']);
104+ // await run('deno', ['task', 'check']);
105+
106+ // if (state.live) await run('deno', ['task', 'test']);
107+ // },
107108} ;
108109
109110let projectNames = Object . keys ( projectRunners ) as Array < keyof typeof projectRunners > ;
You can’t perform that action at this time.
0 commit comments