Skip to content

Commit

Permalink
mac mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Feb 19, 2024
1 parent f86418f commit 10660b8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
brew install mysql
brew tap homebrew/services
brew services start mysql
mysqladmin --user=root --password='' --host='localhost' --port=3306 password 'root'
mysqladmin --user=root --password='' --protocol=tcp password 'root'
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
Expand All @@ -89,7 +89,7 @@ jobs:
- run: npm test

test-win:
if: false
# if: false
needs: [ lint, get-lts ]
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -98,8 +98,9 @@ jobs:
node-version: ${{ fromJson(needs.get-lts.outputs.active) }}
fail-fast: false
steps:
# - name: Start MySQL
# run: /etc/init.d/mysql start
- name: Install MySQL
run: |
choco install mysql
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
Expand Down

0 comments on commit 10660b8

Please sign in to comment.