Skip to content

Commit

Permalink
ci: adding macOs runner with docker setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rH4rtinger committed Sep 20, 2024
1 parent 3238cf0 commit 661c2af
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Therefore, we can not install and start a docker container in the WSL.

# Currently, no macOS runner, because during the setup of docker, this runner hangs: https://github.com/douglascamata/setup-docker-macos-action/issues/37
os: [ubuntu-latest]
os: [ubuntu-latest, macos-13]
node-version: [18.x, 20.x, 22.x]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -28,6 +28,10 @@ jobs:
java-version: 21
distribution: temurin

- name: Set up docker for macOS
if: runner.os == 'macOS'
uses: douglascamata/[email protected]

- name: Check Docker Version
run: docker --version

Expand Down

0 comments on commit 661c2af

Please sign in to comment.