Skip to content

Commit

Permalink
mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
koyopro committed Jan 9, 2025
1 parent cb4e2b6 commit 0f6513d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ orbs:
jobs:
test:
executor: node/default
# docker:
# - image: cimg/mysql:8.0
# environment:
# MYSQL_ALLOW_EMPTY_PASSWORD: yes
steps:
- checkout
- run: sudo apt-get update && sudo apt-get install -y cpio
Expand All @@ -28,7 +24,16 @@ jobs:
- run: npm run test:sqlite
- run: npm run generate:pg
- run: npm run test:pg
services:
- mysql

workflows:
test_my_app:
jobs:
- test

services:
mysql:
image: cimg/mysql:8.0
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: yes

0 comments on commit 0f6513d

Please sign in to comment.