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

Merge pull request #422 from oktapodia/dependabot/npm_and_yarn/mongod… #771

Merge pull request #422 from oktapodia/dependabot/npm_and_yarn/mongod…

Merge pull request #422 from oktapodia/dependabot/npm_and_yarn/mongod… #771

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [14, 16, 18]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: npm install, build and test
run: |
yarn install
yarn lint
yarn build
yarn test