mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-26 18:01:16 +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:
|
||||
strategy:
|
||||
matrix:
|
||||
node: [18.x]
|
||||
node: [16.x, 18.x]
|
||||
os: [ubuntu-20.04]
|
||||
runs-on: ${{ matrix.os }}
|
||||
# Service containers to run with `container-job`
|
||||
|
|
|
@ -22,7 +22,7 @@ module.exports = function (grunt) {
|
|||
wait: {
|
||||
server: {
|
||||
options: {
|
||||
delay: 25 * 1000
|
||||
delay: 12 * 1000
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1,17 +1,22 @@
|
|||
[api]
|
||||
port = 8080
|
||||
host = "0.0.0.0"
|
||||
secure = false
|
||||
|
||||
[log]
|
||||
level="error"
|
||||
level = "silly"
|
||||
|
||||
[dbs]
|
||||
# mongodb connection string for the main database
|
||||
mongo="mongodb://127.0.0.1:27017/wildduck-test"
|
||||
# mongodb connection string for the main database
|
||||
mongo = "mongodb://127.0.0.1:27017/wildduck-test"
|
||||
|
||||
# redis connection string
|
||||
redis="redis://127.0.0.1:6379/13"
|
||||
# redis connection string
|
||||
redis = "redis://127.0.0.1:6379/13"
|
||||
|
||||
dbname="wildduck-test"
|
||||
dbname = "wildduck-test"
|
||||
|
||||
[imap]
|
||||
|
||||
[lmtp]
|
||||
enabled=true
|
||||
port=2424
|
||||
enabled = true
|
||||
port = 2424
|
||||
|
|
Loading…
Reference in a new issue