Skip to content

fix(count): excludes deleted entities #2772

fix(count): excludes deleted entities

fix(count): excludes deleted entities #2772

Workflow file for this run

name: Build Lint Test
on: [push]
jobs:
# ===== Build & test API
build-test:
environment: build
runs-on: ubuntu-latest
# PostGreSQL test database init
services:
postgres:
image: postgis/postgis
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: grottoce
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm ci
- name: Lint
run: npm run lint
# ===== Test
- run: npm test
- run: npm run-script coverage
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}