blob: bfb3d38dd412fd34d20fb3bab16dcee5399d7db3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"envs": {
"DISABLE_JSR_PROVENANCE": "true",
"DENO_TESTING_DISABLE_GIT_CHECK": "1"
},
"tempDir": true,
"steps": [{
"args": "publish --token 'sadfasdf' --dry-run --unstable-sloppy-imports",
"output": "sloppy_imports.out"
}, {
"args": "publish --token 'sadfasdf' --dry-run",
"output": "sloppy_imports_not_enabled.out",
"exitCode": 1
}, {
"args": "publish --token 'sadfasdf' --dry-run --unstable-sloppy-imports",
"output": "sloppy_imports_no_warnings.out",
"envs": {
"DENO_DISABLE_PEDANTIC_NODE_WARNINGS": "1"
}
}]
}
|