Skip to content

Commit

Permalink
Add fix for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
MarhiievHE committed Dec 28, 2023
1 parent 4e8d675 commit acb7a01
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,15 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup docker (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker
brew install docker-compose
- name: Start docker containers
run: |
docker-compose -f test-docker-compose.yml up -d pg-example redis-example
docker compose -f test-docker-compose.yml up -d pg-example redis-example
sleep 10 # wait for database to be ready
- name: Use Node.js ${{ matrix.node }}
Expand Down

0 comments on commit acb7a01

Please sign in to comment.