Skip to content

Update code line

Update code line #283

Workflow file for this run

name: expressCart-tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 13.x, 14.x]
mongodb-version: [4.2]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB v${{ matrix.mongodb-version }}
uses: superchargejs/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: npm install
run: npm i
- name: npm test
run: npm run test
env:
test: true
CI: true