From 3c1911565f307188e410d33ad7bae33b37434970 Mon Sep 17 00:00:00 2001 From: Clark Du Date: Thu, 20 Dec 2018 11:08:28 +0000 Subject: [PATCH] ci[trial]: rename intall action[skip ci] --- .github/main.workflow | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 92bbc9f18a..6841c63fe6 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -3,26 +3,26 @@ workflow "Nuxt.js Actions" { resolves = ["Npm Audit", "Lint", "Test: E2E", "Coverage: Unit"] } -action "nuxt/actions-yarn@master" { +action "Install" { uses = "nuxt/actions-yarn@master" args = "install" } action "Lint" { uses = "nuxt/actions-yarn@master" - needs = ["nuxt/actions-yarn@master"] + needs = ["Install"] args = "lint" } action "Build" { uses = "nuxt/actions-yarn@master" - needs = ["nuxt/actions-yarn@master"] + needs = ["Install"] args = "test:fixtures" } action "Npm Audit" { uses = "actions/npm@e7aaefe" - needs = ["nuxt/actions-yarn@master"] + needs = ["Install"] args = "audit --audit-level=moderate" }