Skip to content

Local tests database data leak (#2409) #5

Local tests database data leak (#2409)

Local tests database data leak (#2409) #5

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
merge_group:
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn build:dependencies
- uses: nick-fields/retry@v2
name: Run yarn test
with:
timeout_seconds: 60
max_attempts: 2
retry_on: timeout
command: yarn test
env:
COINGECKO_API_KEY: ${{ secrets.COINGECKO_API_KEY }}
TEST_DB_URL: postgresql://postgres:postgres@localhost:5432/postgres
CONFIG_ALCHEMY_API_KEY: ${{ secrets.CONFIG_ALCHEMY_API_KEY }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn build:dependencies
- run: yarn lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn typecheck
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn format