Skip to content

[Typescript] Expose Tsquery and Node #14

[Typescript] Expose Tsquery and Node

[Typescript] Expose Tsquery and Node #14

Workflow file for this run

name: API-test
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14
env:
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
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- run: npm i
- run: npm test
- run: npx nyc report --reporter=lcov > coverage.lcov && npx codecov