Skip to content

fix-1329: Move toast in offer detail above the bottom button #325

fix-1329: Move toast in offer detail above the bottom button

fix-1329: Move toast in offer detail above the bottom button #325

Workflow file for this run

name: "[Test] run jest tests (unit and integration)"
on:
pull_request:
branches:
- main
jobs:
build:
name: Run jest tests on all packages
timeout-minutes: 15
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15.2
env:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: root
POSTGRES_HOST_AUTH_METHOD: trust
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Run tests
env:
TEST_DB_HOST: "postgres"
run: yarn turbo:test