diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 07f155c..779a321 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -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: @@ -28,6 +28,10 @@ jobs: java-version: 21 distribution: temurin + - name: Set up docker for macOS + if: runner.os == 'macOS' + uses: douglascamata/setup-docker-macos-action@v1-alpha.14 + - name: Check Docker Version run: docker --version