Skip to content

Commit

Permalink
chore: add lint step to main.workflow (ionic-team#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
camwiegert authored Feb 13, 2019
1 parent 4a268eb commit 09fda7a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ action "Install" {
args = "install"
}

action "Build" {
action "Lint" {
uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
needs = ["Install"]
args = "run lint"
}

action "Build" {
uses = "actions/npm@de7a3705a9510ee12702e124482fad6af249991b"
needs = ["Lint"]
args = "run build"
}

0 comments on commit 09fda7a

Please sign in to comment.