Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Bump mongoose from 4.13.21 to 7.1.2 #187

Bump mongoose from 4.13.21 to 7.1.2

Bump mongoose from 4.13.21 to 7.1.2 #187

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.6.0
with:
mongodb-version: 5
- name: Install Dependencies
run: npm install
- run: npm run build --if-present
- run: npm test