Skip to content

build(deps): bump winston-transport from 4.5.0 to 4.6.0 (#249) #63

build(deps): bump winston-transport from 4.5.0 to 4.6.0 (#249)

build(deps): bump winston-transport from 4.5.0 to 4.6.0 (#249) #63

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 16
- 18
- 20
mongo:
- v6.0-latest
- v5.0-latest
- v4.4-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
env:
MONGOMS_VERSION: ${{ matrix.mongo }}
MONGOMS_DISABLE_POSTINSTALL: 0
run: npm clean-install
- name: Lint
run: npm run lint
- name: Test
env:
MONGOMS_VERSION: ${{ matrix.mongo }}
run: npm test