mirror of
https://github.com/actions/toolkit.git
synced 2026-08-07 00:00:18 +02:00
Add build step to workflow file
This commit is contained in:
@@ -8,14 +8,19 @@ action "Dependencies" {
|
||||
args = "ci"
|
||||
}
|
||||
|
||||
action "Compile" {
|
||||
uses = "actions/[email protected]"
|
||||
run = "run build"
|
||||
}
|
||||
|
||||
action "Format" {
|
||||
needs = "Dependencies"
|
||||
needs = "Compile"
|
||||
uses = "actions/[email protected]"
|
||||
args = "run format"
|
||||
}
|
||||
|
||||
action "Test" {
|
||||
needs = "Dependencies"
|
||||
needs = "Compile"
|
||||
uses = "actions/[email protected]"
|
||||
args = "test"
|
||||
}
|
||||
Reference in New Issue
Block a user