migrate service tests to GH actions (#8421)

* run service tests with GHA

* rename GithubGist services to Gist

* completely delete circle ci config
This commit is contained in:
chris48s
2023-01-17 20:55:57 +00:00
committed by GitHub
parent 27a2deb7d2
commit e8c42e9ec1
12 changed files with 192 additions and 278 deletions

View File

@@ -22,6 +22,10 @@ if (data.stats.passes > 0) {
if (data.stats.failures > 0) {
process.stdout.write(`${data.stats.failures} failed\n\n`)
}
if (data.stats.pending > 0) {
process.stdout.write(`${data.stats.pending} pending\n\n`)
process.exit(2)
}
if (data.stats.failures > 0) {
for (const test of data.tests) {