Skip to content

feat: add basic address to registration #18

feat: add basic address to registration

feat: add basic address to registration #18

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
env:
DATABASE_USER: postgres
DATABASE_PASSWORD: postgres
DATABASE_HOST: localhost
DATABASE_NAME: postgres
jobs:
ci:
runs-on: ubuntu-latest
services:
postgres:
image: postgis/postgis
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.11.1
cache: 'npm'
- run: npm ci
- run: npm run build:dev -- --filter=@common\*
- run: npm ci
- run: npm run build:dev
- run: npm run test:unit
- run: npm run test:integration