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ů.

10 řádky
191B

  1. workflow "Verify changes on push" {
  2. resolves = ["Run all tests"]
  3. on = "push"
  4. }
  5. action "Run all tests" {
  6. uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
  7. args = "test"
  8. }