Skip to content

Fix/4274 write nicer html emails #4274 #7129

Fix/4274 write nicer html emails #4274

Fix/4274 write nicer html emails #4274 #7129

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
timeout-minutes: 60
strategy:
matrix:
node: ["14.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
services:
db:
image: postgres
env: { POSTGRES_PASSWORD: "postgres" }
ports: ["5432:5432"]
# Set health checks to wait until Postgres has started
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@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Verify formatting
run: yarn lint
- name: Build
run: yarn ci-build
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres
- name: Run tests
run: yarn ci-test --silent
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres