Skip to content

feat: Change toast notification to a popup when user creates anonymous question #416

feat: Change toast notification to a popup when user creates anonymous question

feat: Change toast notification to a popup when user creates anonymous question #416

Workflow file for this run

name: "Unit and Integration Tests"
on:
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
services:
postgres:
image: ankane/pgvector
env:
POSTGRES_DB: wizeq
POSTGRES_PASSWORD: wizeq_password
POSTGRES_USER: postgres
ports:
- 5433:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test:unit
- name: Run integration tests
run: npm run test:integration