mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
17 lines
288 B
Text
17 lines
288 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"steps": [{
|
||
|
"args": "init --lib project",
|
||
|
"output": "init.out"
|
||
|
}, {
|
||
|
"cwd": "project",
|
||
|
"args": "test",
|
||
|
"output": "test.out"
|
||
|
}, {
|
||
|
"cwd": "project",
|
||
|
"args": "publish --dry-run",
|
||
|
"output": "dry_publish.out",
|
||
|
"exitCode": 1
|
||
|
}]
|
||
|
}
|