Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Bump @types/node from 20.10.3 to 20.10.4 (#526) #810

Bump @types/node from 20.10.3 to 20.10.4 (#526)

Bump @types/node from 20.10.3 to 20.10.4 (#526) #810

Workflow file for this run

name: Run tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
container: node:lts
services:
# https://hub.docker.com/_/postgres
postgres:
image: postgres:14
env:
POSTGRES_PASSWORD: password
POSTGRES_USER: typeormtest
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
env:
POSTGRES_HOST: postgres