Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 433 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 433 Bytes

Start MongoDB as Docker Container JavaScript Action

Starts the specific version of MongoDB as a detach Docker container

Inputs

mongoDbVersion

Required The version of mongoDB. Default "3.6".

Example usage

...
...
strategy:
      matrix:
        mongodb-version: ["4.0", "4.2"]
...
...
- name: Launch MongoDB
  uses: wbari/[email protected]
  with:
    mongoDBVersion: ${{ matrix.mongodb-version }}