Skip to content

Bump @testing-library/jest-dom from 5.16.5 to 6.4.6 #7

Bump @testing-library/jest-dom from 5.16.5 to 6.4.6

Bump @testing-library/jest-dom from 5.16.5 to 6.4.6 #7

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 2 * * 1' # Runs every Monday at 2 AM
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test -- --watchAll=false
- name: Build project
run: npm run build