chore: remove test workflow from actions (#1323)

* chore: remove test workflow from actions

It fails randomly, we need to investigate the reasons.

* chore: re-enable unit test
This commit is contained in:
Juan Picado @jotadeveloper 2019-05-25 15:21:55 +02:00 committed by GitHub
parent 1f42c526ae
commit 46eeb7e963
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 22 deletions

21
.github/main.workflow vendored
View File

@ -24,6 +24,7 @@ workflow "release" {
resolves = [ resolves = [
"github-release", "github-release",
"release:lint", "release:lint",
"release:build",
] ]
on = "push" on = "push"
} }
@ -78,14 +79,6 @@ action "github-release" {
] ]
} }
workflow "build and test" {
resolves = [
"lint",
"coverage",
]
on = "push"
}
action "branch-filter" { action "branch-filter" {
uses = "actions/bin/filter@master" uses = "actions/bin/filter@master"
args = "branch" args = "branch"
@ -108,15 +101,3 @@ action "lint" {
needs = ["install"] needs = ["install"]
args = "yarn run lint" args = "yarn run lint"
} }
action "test" {
uses = "docker://node:10"
needs = ["build"]
args = "sh scripts/puppeteer-setup-ci.sh"
}
action "coverage" {
uses = "docker://node:10"
needs = ["test"]
args = "yarn run coverage:publish"
}

View File

@ -30,8 +30,7 @@ describe('basic system test', () => {
server.close(done); server.close(done);
}); });
// FIXME: we need to investigate why this fails randomly on GitHub Actions test('server should respond on /', done => {
test.skip('server should respond on /', done => {
request({ request({
url: 'http://localhost:' + port + '/', url: 'http://localhost:' + port + '/',
}, function(err, res, body) { }, function(err, res, body) {