Created
November 26, 2018 20:13
-
-
Save nem035/545e21d17bd43b97a69de23bafbf0690 to your computer and use it in GitHub Desktop.
Revisions
-
nem035 revised this gist
Nov 26, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ async function workflow() { const workspace = await install(); await Promise.all([build(workspace), lint(workspace)]); if (isDeployBranch) { await deploy(workspace); } -
nem035 created this gist
Nov 26, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ async function workflow() { const workspace = await install(); await Promise.all([build(workspace), lint(workspace)]); if (isDeployBranch) { await deploy(workspace); } }