From 0b0a4e63593dd7633c710c53c9ba965d4acb0eb2 Mon Sep 17 00:00:00 2001 From: Tobias Gurtzick Date: Sun, 10 Sep 2023 13:58:59 +0200 Subject: [PATCH] add password Signed-off-by: Tobias Gurtzick --- .github/workflows/ci.yml | 2 +- test/db.config.ci | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86f7733..4b0bc3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - uses: mirromutth/mysql-action@v1.1 with: mysql database: 'db_migrate_test' # Optional, default value is "test". The specified database which will be create - mysql root password: '' # Required if "mysql user" is empty, default is empty. The root superuser password + mysql root password: 'super123' # Required if "mysql user" is empty, default is empty. The root superuser password - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 diff --git a/test/db.config.ci b/test/db.config.ci index 3a6cc4f..80ef2e1 100644 --- a/test/db.config.ci +++ b/test/db.config.ci @@ -2,6 +2,7 @@ "mysql": { "database": "db_migrate_test", "user": "root", + "password": "super123" "driver": "mysql" }, "pg": {