From b529c11cf48a4e77e36bd8f6abcb5a439f6286f0 Mon Sep 17 00:00:00 2001 From: Tobias Gurtzick Date: Sun, 10 Sep 2023 14:02:12 +0200 Subject: [PATCH] utf8 Signed-off-by: Tobias Gurtzick --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e877af..9200d8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,8 @@ jobs: with: mysql database: 'db_migrate_test' # Optional, default value is "test". The specified database which will be create mysql root password: 'super123' # Required if "mysql user" is empty, default is empty. The root superuser password + character set server: 'utf8' # Optional, default value is 'utf8mb4'. The '--character-set-server' option for mysqld + collation server: 'utf8_general_ci' # Optional, default value is 'utf8mb4_general_ci'. The '--collation-server' option for mysqld - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3