Parcourir la source
Install deps as part of GitHub Actions workflow
..forgot to install dependencies before executing
`$ npm test` which obviously exploded due to the
fact that `eslint` and friends weren't available.
tags/v3.0.2
Phillip Johnsen
GitHub
il y a 6 ans
Parent
révision
930a485a28
Aucune clé connue n'a été trouvée dans la base pour cette signature
ID de la clé GPG: 4AEE18F83AFDEB23
1 fichiers modifiés avec
5 ajouts et
0 suppressions
-
.github/main.workflow
|
|
@@ -3,6 +3,11 @@ workflow "Verify changes on push" { |
|
|
on = "push" |
|
|
on = "push" |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
action "Install dependencies" { |
|
|
|
|
|
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" |
|
|
|
|
|
args = "install" |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
action "Run all tests" { |
|
|
action "Run all tests" { |
|
|
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" |
|
|
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" |
|
|
args = "test" |
|
|
args = "test" |
|
|
|