Skip to content

bump matchers version #10

bump matchers version

bump matchers version #10

Workflow file for this run

name: Build
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
branches:
- main
push:
paths-ignore:
- 'docs/**'
- 'README.md'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
mongodb-version: [4.4]
steps:
- name: Git Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: npm install
- run: npm run test
env:
CI: true