Skip to content

chore(deps): bump express and sails #2785

chore(deps): bump express and sails

chore(deps): bump express and sails #2785

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@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run lint
- 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 }}