Skip to content

fix: test typing with captcha response dummy values #219

fix: test typing with captcha response dummy values

fix: test typing with captcha response dummy values #219

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Test
runs-on: ubuntu-latest
services:
postgres:
image: postgres
ports: ['5432:5432']
env:
POSTGRES_USER: username
POSTGRES_PASSWORD: password
POSTGRES_DB: ci_test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
TEST_DATABASE_URL: postgresql://username:password@localhost:5432/ci_test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: yarn
- run: yarn install --immutable
- run: yarn rw prisma generate
- run: yarn rw type-check
- run: yarn rw test --watch=false
- run: yarn rw lint