mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
21 lines
579 B
Text
21 lines
579 B
Text
{
|
|
"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"
|
|
}
|
|
}]
|
|
}
|