Fix node-postgres.com/apis/... links (#912) #42
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: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
check-lint: | |
name: Lint | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: npm install | |
- name: TypeScript Lint | |
run: npm run tslint | |
- name: ESLint | |
run: npm run lint | |
check-postgres: | |
strategy: | |
matrix: | |
include: | |
- name: PostgreSQL 10, Node 14 | |
POSTGRES_IMAGE: postgres:10 | |
NODE_VERSION: 14 | |
- name: PostgreSQL 10, Node 18 | |
POSTGRES_IMAGE: postgres:10 | |
NODE_VERSION: 18 | |
- name: PostgreSQL 11, Node 14 | |
POSTGRES_IMAGE: postgres:11 | |
NODE_VERSION: 14 | |
- name: PostgreSQL 11, Node 18 | |
POSTGRES_IMAGE: postgres:11 | |
NODE_VERSION: 18 | |
- name: PostgreSQL 15, Node 14 | |
POSTGRES_IMAGE: postgres:15 | |
NODE_VERSION: 14 | |
- name: PostgreSQL 15, Node 18 | |
POSTGRES_IMAGE: postgres:15 | |
NODE_VERSION: 18 | |
fail-fast: false | |
name: ${{ matrix.name }} | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: ${{ matrix.POSTGRES_IMAGE }} | |
env: | |
POSTGRES_HOST: postgres | |
POSTGRES_DB: pg_promise_test | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.NODE_VERSION }} | |
- name: Cache Node.js modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}- | |
- name: Install Dependencies | |
run: npm install | |
- name: Initialize Database | |
run: npm run test:init | |
- name: Test and Coverage | |
run: npm run coverage | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |