Skip to content

Added web e2e tests and CI integration #1

Added web e2e tests and CI integration

Added web e2e tests and CI integration #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: mynance
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: checkout branch
- uses: actions/checkout@v3
- name: Make envfile
uses: SpicyPizza/[email protected]
with:
SERVER_DATABASE_URL: postgresql://postgresql:postgresql@localhost:5432/mynance
- name: Install dependecies
run: yarn
- name: Install playwright driver
run: yarn playwright install chromium
- name: Run CI
run: yarn ci