mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
* Remove unused travis CI config * Bump eslint and friends * Fix lint errors after eslint upgrade * Remove windows and macos from CI workflow as they are actually running linux Removes the windows and macos matrix from the CI workflow as they were never actually setting the OS. Both were running against the "ubuntu-latest" OS. Trying to actually use them would not work either as neither windows or macos is supported for service containers. A different means will be needed to test on those platforms. Until that's done, this removes those from the matrix as we were simply running the same thing 3x for the same node versions.
74 lines
1.7 KiB
YAML
74 lines
1.7 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
persist-credentials: false
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: yarn
|
|
- run: yarn install
|
|
- run: yarn lint
|
|
build:
|
|
needs: lint
|
|
services:
|
|
postgres:
|
|
image: postgres:11
|
|
env:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: ci_db_test
|
|
POSTGRES_HOST_AUTH_METHOD: 'md5'
|
|
ports:
|
|
- 5432:5432
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
strategy:
|
|
matrix:
|
|
node:
|
|
- '10'
|
|
- '12'
|
|
- '14'
|
|
- '16'
|
|
- '18'
|
|
os:
|
|
- ubuntu-latest
|
|
name: Node.js ${{ matrix.node }} (${{ matrix.os }})
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
PGUSER: postgres
|
|
PGHOST: localhost
|
|
PGPASSWORD: postgres
|
|
PGDATABASE: ci_db_test
|
|
PGTESTNOSSL: 'true'
|
|
SCRAM_TEST_PGUSER: scram_test
|
|
SCRAM_TEST_PGPASSWORD: test4scram
|
|
steps:
|
|
- name: Show OS
|
|
run: |
|
|
uname -a
|
|
- run: |
|
|
psql \
|
|
-c "SET password_encryption = 'scram-sha-256'" \
|
|
-c "CREATE ROLE scram_test LOGIN PASSWORD 'test4scram'"
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
persist-credentials: false
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
cache: yarn
|
|
- run: yarn install
|
|
# TODO(bmc): get ssl tests working in ci
|
|
- run: yarn test
|