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 = {
95
95
await run ( 'bun' , [ 'test' ] ) ;
96
96
}
97
97
} ,
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
+ // },
107
108
} ;
108
109
109
110
let projectNames = Object . keys ( projectRunners ) as Array < keyof typeof projectRunners > ;
You can’t perform that action at this time.
0 commit comments