forked from nukeop/nuclear
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing out Github actions
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
workflow "Build and test on push" { | ||
on = "push" | ||
resolves = ["GitHub Action for npm-4"] | ||
} | ||
|
||
action "GitHub Action for npm" { | ||
uses = "actions/npm@4633da3702a5366129dca9d8cc3191476fc3433c" | ||
args = "install" | ||
} | ||
|
||
action "Filters for GitHub Actions" { | ||
uses = "actions/bin/filter@ec328c7554cbb19d9277fc671cf01ec7c661cd9a" | ||
} | ||
|
||
action "GitHub Action for npm-1" { | ||
uses = "actions/npm@4633da3702a5366129dca9d8cc3191476fc3433c" | ||
needs = ["GitHub Action for npm"] | ||
args = "test" | ||
} | ||
|
||
action "GitHub Action for npm-2" { | ||
uses = "actions/npm@4633da3702a5366129dca9d8cc3191476fc3433c" | ||
needs = ["GitHub Action for npm-1"] | ||
args = "run build:dist" | ||
} | ||
|
||
action "GitHub Action for npm-3" { | ||
uses = "actions/npm@4633da3702a5366129dca9d8cc3191476fc3433c" | ||
needs = ["GitHub Action for npm-2"] | ||
args = "run build:electron" | ||
} | ||
|
||
action "GitHub Action for npm-4" { | ||
uses = "actions/npm@4633da3702a5366129dca9d8cc3191476fc3433c" | ||
needs = ["GitHub Action for npm-3"] | ||
args = "run build:all" | ||
} |