ソースを参照

Try a basic GitHub Actions workflow

As a means of seeing how GitHub Actions
work compared to Travis CI, these changes creates
a so-called workflow that runs `$ npm test`
upon every `$ git push` to the repository.
tags/v3.0.2
Phillip Johnsen GitHub 6年前
コミット
d0290c4c7c
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更9行の追加0行の削除
  1. +9
    -0
      .github/main.workflow

+ 9
- 0
.github/main.workflow ファイルの表示

@@ -0,0 +1,9 @@
workflow "Verify changes on push" {
resolves = ["Run all tests"]
on = "push"
}

action "Run all tests" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
args = "test"
}

読み込み中…
キャンセル
保存