Skip to content

Fix: Email not working #41

Fix: Email not working

Fix: Email not working #41

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
workflow_dispatch:
inputs:
debug_enabled:
description: "Run the build with upterm debugging enabled"
required: false
default: false
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
strategy:
matrix:
node-version: [20.x]
services:
postgres:
image: ghcr.io/vija02/theopenpresenter_db:main
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "0.0.0.0: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:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: yarn, lint, build and test
run: |
cp .env.ci .env
yarn --no-immutable
CONFIRM_DROP=1 yarn setup
yarn build
yarn test