log postgres info #77
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
# 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: [14.x, 16.x, 18.x] | |
postgres-version: [13, 14, 15] | |
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 }} |