Skip to content

Update dependency react-icons to v5.4.0 #1545

Update dependency react-icons to v5.4.0

Update dependency react-icons to v5.4.0 #1545

Workflow file for this run

name: Integration Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Update database url for tests
run: cp .env.local .env
- name: Run Prisma Migrate
run: npx prisma migrate deploy
- name: Run tests
run: npm run test
env:
CI: 1