25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

16 satır
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. }