From 590aa464c09906a28fe727773b99cc5c282c64c7 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Sat, 17 Feb 2024 19:18:40 -0800 Subject: [PATCH] enable mysql service --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54e4b1b..defa0cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,14 +26,14 @@ jobs: fail-fast: false steps: - name: Start MySQL - run: | - sudo /etc/init.d/mysql start - sh sql/init-mysql.sh + run: sudo /etc/init.d/mysql start - uses: actions/checkout@v4 - uses: actions/setup-node@v4 name: Node ${{ matrix.node-version }} on ${{ matrix.os }} with: node-version: ${{ matrix.node-version }} + - name: Initialize MySQL + run: sh sql/init-mysql.sh - run: npm install - run: npm test