Update code line #283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |