Skip to content

Cleanup docs

Cleanup docs #138

Workflow file for this run

# GENERATED BY github-workflow-manager
# gwm: {"type":"npm-test"}
name: NPM Test
on: push
jobs:
npm_test:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Run NPM Test
strategy:
matrix:
node-version: [18.x, 20.x]
postgres-version: [14, 15, 16]
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Test
run: yarn test -T 1m
env:
POSTGRES_VERSION: ${{ matrix.postgres-version }}