Skip to content

Bump @testing-library/react from 16.1.0 to 16.2.0 #456

Bump @testing-library/react from 16.1.0 to 16.2.0

Bump @testing-library/react from 16.1.0 to 16.2.0 #456

Workflow file for this run

name: Testing
on:
workflow_dispatch:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:alpine
env:
POSTGRES_DB: testing
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
options: --health-cmd pg_isready
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version: 22
- name: Install
run: npm install
- name: Test
run: npm run ci
env:
SECRET_KNEX_CONNECTION: postgres://postgres:postgres@localhost:5432/testing