mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
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:
parent
1f42c526ae
commit
46eeb7e963
21
.github/main.workflow
vendored
21
.github/main.workflow
vendored
@ -24,6 +24,7 @@ workflow "release" {
|
||||
resolves = [
|
||||
"github-release",
|
||||
"release:lint",
|
||||
"release:build",
|
||||
]
|
||||
on = "push"
|
||||
}
|
||||
@ -78,14 +79,6 @@ action "github-release" {
|
||||
]
|
||||
}
|
||||
|
||||
workflow "build and test" {
|
||||
resolves = [
|
||||
"lint",
|
||||
"coverage",
|
||||
]
|
||||
on = "push"
|
||||
}
|
||||
|
||||
action "branch-filter" {
|
||||
uses = "actions/bin/filter@master"
|
||||
args = "branch"
|
||||
@ -108,15 +101,3 @@ action "lint" {
|
||||
needs = ["install"]
|
||||
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"
|
||||
}
|
||||
|
@ -30,8 +30,7 @@ describe('basic system test', () => {
|
||||
server.close(done);
|
||||
});
|
||||
|
||||
// FIXME: we need to investigate why this fails randomly on GitHub Actions
|
||||
test.skip('server should respond on /', done => {
|
||||
test('server should respond on /', done => {
|
||||
request({
|
||||
url: 'http://localhost:' + port + '/',
|
||||
}, function(err, res, body) {
|
||||
|
Loading…
Reference in New Issue
Block a user