Conversation
11d9a4d to
8996f41
Compare
b28932d to
de2626f
Compare
Contributor
Author
|
Travis CIのChrome(正確にはChromium)のバージョンが古過ぎてECMAScript 2015で書かれたコードが動かない… |
|
ちょっと無理矢理だけどもコレを使うとなんとかなるかも? |
|
公式サポートされてなければパッチ当てるとかですかねー |
|
ES6 -> ES5 に変換して何とかする事例その2 |
315a4ce to
08f33fe
Compare
|
もう一つの選択肢として別のCIツールの紹介です。 これは、Boxという形でVMの環境構築を自由にカスタマイズできます。 |
d505a0f to
92048c5
Compare
92048c5 to
a681d5e
Compare
Contributor
|
👍 |
4825de8 to
4b4e82d
Compare
08e5563 to
a68fa2e
Compare
a68fa2e to
10142b5
Compare
Contributor
|
LGTM |
10142b5 to
184fa02
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

todo
このプルリクの目的
GitHubとTravis CIを連携させます。
Travis CIを使うと、プルリクエストが行われるとテストが自動的に行われるようになります。
Travis CIを使うためには、テストをコマンドラインから実行できるようにする必要があります。
そのため、テストをコマンドラインからも実行できるようにしました。(ブラウザからのテストは従来通り #46 の方法で可能です)
コマンドラインからテストを実行する方法(Mac OS X)
Travis CIによって自動で行われたテストの結果を確認する方法
プルリクエストページのMerge pull requestボタンから二つ上の欄にテストの結果が表示されています。
例えばこのページでは、「All checks have passed」というメッセージが表示されています。
参考にしたページ