Skip to content

Merge pull request #31 from apostrophecms/pro-5716-302-instead-of-301 #23

Merge pull request #31 from apostrophecms/pro-5716-302-instead-of-301

Merge pull request #31 from apostrophecms/pro-5716-302-instead-of-301 #23

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: tests
# Controls when the action will run.
on:
push:
branches: [ "main" ]
pull_request:
branches: [ '*' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
mongodb-version: ['4.4', '5.0', '6.0']
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.8.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: npm install
- run: npm test
env:
CI: true