Skip to content

0.1.4

0.1.4 #29

Workflow file for this run

name: validate
on: [push, pull_request]
jobs:
validate:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Validate
working-directory: ./
run: |
npm i
env PGUSER=postgres PGPASSWORD=postgres npm run test:setup-db
env SUP_SQL_TEST_DSN=postgres://postgres:postgres@127.0.0.1/test npm run validate
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: vampirical/supple-sql