Skip to content

Commit d793061

Browse files
author
Emily
authored
Merge pull request #327 from primer/q4-haunted-kittens
Q4 Haunted Kittens Release Tracking PR 👻
2 parents 5928c4d + 1fcd6e1 commit d793061

32 files changed

Lines changed: 403 additions & 275 deletions

.github/main.workflow

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
workflow "Lint and test" {
22
on = "push"
3-
resolves = ["lint", "test"]
3+
resolves = ["install", "lint", "test"]
4+
}
5+
6+
action "install" {
7+
uses = "actions/npm@94e6933"
8+
args = "ci"
49
}
510

611
action "lint" {
12+
needs = ["install"]
713
uses = "actions/npm@94e6933"
8-
args = "lint"
14+
args = "run lint"
915
}
1016

1117
action "test" {
12-
args = "test"
18+
needs = ["install"]
1319
uses = "actions/npm@94e6933"
20+
args = "test"
1421
}

0 commit comments

Comments
 (0)