Skip to content

Bump @testing-library/react from 13.4.0 to 15.0.7 #5

Bump @testing-library/react from 13.4.0 to 15.0.7

Bump @testing-library/react from 13.4.0 to 15.0.7 #5

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build the application
run: npm run build
- name: Start the server (background)
run: npm run start-server &
- name: Start the client
run: npm run start-client