Skip to content

Release 6.2.1

Release 6.2.1 #56

Workflow file for this run

name: Run cypress tests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
mongodb-version: [5.0, 6.0, 7.0]
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB ${{ matrix.mongodb-version }}
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- working-directory: .
run: npm install
- working-directory: .
run: npm run build
- working-directory: .
run: npm test
env:
CI: true