mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-27 10:18:25 +08:00
retry test
This commit is contained in:
parent
b5cbad0dfa
commit
c1e82e7f76
3 changed files with 15 additions and 10 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node: [18.x]
|
node: [16.x, 18.x]
|
||||||
os: [ubuntu-20.04]
|
os: [ubuntu-20.04]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
# Service containers to run with `container-job`
|
# Service containers to run with `container-job`
|
||||||
|
|
|
@ -22,7 +22,7 @@ module.exports = function (grunt) {
|
||||||
wait: {
|
wait: {
|
||||||
server: {
|
server: {
|
||||||
options: {
|
options: {
|
||||||
delay: 25 * 1000
|
delay: 12 * 1000
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,17 +1,22 @@
|
||||||
|
[api]
|
||||||
|
port = 8080
|
||||||
|
host = "0.0.0.0"
|
||||||
|
secure = false
|
||||||
|
|
||||||
[log]
|
[log]
|
||||||
level="error"
|
level = "silly"
|
||||||
|
|
||||||
[dbs]
|
[dbs]
|
||||||
# mongodb connection string for the main database
|
# mongodb connection string for the main database
|
||||||
mongo="mongodb://127.0.0.1:27017/wildduck-test"
|
mongo = "mongodb://127.0.0.1:27017/wildduck-test"
|
||||||
|
|
||||||
# redis connection string
|
# redis connection string
|
||||||
redis="redis://127.0.0.1:6379/13"
|
redis = "redis://127.0.0.1:6379/13"
|
||||||
|
|
||||||
dbname="wildduck-test"
|
dbname = "wildduck-test"
|
||||||
|
|
||||||
[imap]
|
[imap]
|
||||||
|
|
||||||
[lmtp]
|
[lmtp]
|
||||||
enabled=true
|
enabled = true
|
||||||
port=2424
|
port = 2424
|
||||||
|
|
Loading…
Reference in a new issue