Skip to content

feat: postgres blog post #128

feat: postgres blog post

feat: postgres blog post #128

Workflow file for this run

name: ci
on:
pull_request:
env:
CI: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12.x, 14.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.3.0
with:
mongodb-version: 4.2
- name: Install
run: npm install --ignore-scripts
- name: Run tests
run: npm test