Skip to content

chore(main): release 2.2.0 #73

chore(main): release 2.2.0

chore(main): release 2.2.0 #73

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [20, 22]
mongodb-version: ['6.0', '7.0', '8.0']
name: Node ${{ matrix.node }} MongoDB ${{ matrix.mongodb-version }}
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
uses: supercharge/mongodb-github-action@1.10.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: npm install
- run: npm test
eslint:
runs-on: ubuntu-latest
name: Evaluate eslint
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
- run: npm install
- run: npm run eslint