-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: rebrand to testbeats * remove node 14 and 16 * added a quote in readme
- Loading branch information
1 parent
e85c6da
commit ef24127
Showing
9 changed files
with
56 additions
and
38 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"cSpell.words": [ | ||
"testbeats" | ||
] | ||
} |
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
case "$OSTYPE" in | ||
darwin*) file_name=testbeats-macos ;; | ||
linux*) file_name=testbeats-linux ;; | ||
msys*) file_name=testbeats-win.exe ;; | ||
cygwin*) file_name=testbeats-win.exe ;; | ||
*) echo "$OSTYPE OS - Not Supported"; exit 1 ;; | ||
esac | ||
|
||
latest_tag=$(curl -s https://api.github.com/repos/test-results-reporter/testbeats/releases/latest | sed -Ene '/^ *"tag_name": *"(v.+)",$/s//\1/p') | ||
curl -JLO https://github.com/test-results-reporter/testbeats/releases/download/${latest_tag}/${file_name}.zip | ||
unzip ${file_name}.zip | ||
chmod +x ${file_name} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
case "$OSTYPE" in | ||
darwin*) file_name=test-results-reporter-macos ;; | ||
darwin*) file_name=test-results-reporter-macos ;; | ||
linux*) file_name=test-results-reporter-linux ;; | ||
msys*) file_name=test-results-reporter-win.exe ;; | ||
cygwin*) file_name=test-results-reporter-win.exe ;; | ||
*) echo "$OSTYPE OS - Not Supported"; exit 1 ;; | ||
esac | ||
|
||
latest_tag=$(curl -s https://api.github.com/repos/test-results-reporter/reporter/releases/latest | sed -Ene '/^ *"tag_name": *"(v.+)",$/s//\1/p') | ||
curl -JLO https://github.com/test-results-reporter/reporter/releases/download/${latest_tag}/${file_name}.zip | ||
latest_tag=$(curl -s https://api.github.com/repos/test-results-reporter/testbeats/releases/latest | sed -Ene '/^ *"tag_name": *"(v.+)",$/s//\1/p') | ||
curl -JLO https://github.com/test-results-reporter/testbeats/releases/download/v1.1.6/${file_name}.zip | ||
unzip ${file_name}.zip | ||
chmod +x ${file_name} |