blob: f9e38fbe588ace8dc34708cb95ff941cb32d44ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"tempDir": true,
"envs": {
"DISABLE_JSR_PROVENANCE": "true",
"DENO_TESTING_DISABLE_GIT_CHECK": "1"
},
"steps": [{
"args": "publish --token 'sadfasdf' --dry-run --unstable-bare-node-builtins",
"output": "bare_node_builtins.out"
}, {
"envs": {
"DENO_DISABLE_PEDANTIC_NODE_WARNINGS": "1"
},
"args": "publish --token 'sadfasdf' --dry-run --unstable-bare-node-builtins",
"output": "no_warnings.out"
}]
}
|