Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 řádky
344B

  1. workflow "Verify changes on push" {
  2. resolves = ["Run unit tests"]
  3. on = "push"
  4. }
  5. action "Install dependencies" {
  6. uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
  7. args = "install"
  8. }
  9. action "Run unit tests" {
  10. uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
  11. needs = "Install dependencies"
  12. args = "test"
  13. }