Skip to content

build(deps): Bump mongoose from 6.12.2 to 8.3.5 #3322

build(deps): Bump mongoose from 6.12.2 to 8.3.5

build(deps): Bump mongoose from 6.12.2 to 8.3.5 #3322

Workflow file for this run

name: NodeCI
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 15.x, 16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB As Docker
uses: wbari/[email protected]
- name: npm install, lint, and test
run: |
npm ci
npm run lint
npm test
env:
CI: true
- name: Calculate Test Coverage
run: |
npm run test-cov
- name: Upload Coverage Report
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}