From 8adb8657b3c4d0d03a02b3dbfd24ddb598a897de Mon Sep 17 00:00:00 2001 From: Bhargav Ponnapalli Date: Wed, 26 Dec 2018 20:31:39 +0530 Subject: [PATCH] Yarn action --- .github/main.workflow | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index c7cb4ec85f..73ef88bc3a 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -4,13 +4,13 @@ workflow "New workflow" { } action "Install" { - uses = "actions/npm@e7aaefe" + uses = "docker://culturehq/actions-yarn:latest" args = "install" } action "Deploy" { needs = "Install" - uses = "actions/npm@e7aaefe" + uses = "docker://culturehq/actions-yarn:latest" secrets = ["ZEIT_TOKEN"] args = "run deploy" }