Skip to content

Bump @testing-library/jest-dom from 6.4.2 to 6.4.8 #768

Bump @testing-library/jest-dom from 6.4.2 to 6.4.8

Bump @testing-library/jest-dom from 6.4.2 to 6.4.8 #768

Workflow file for this run

name: FilmDrop UI CI
on:
push:
branches:
- main
- 'feature/**'
pull_request:
branches:
- '**'
jobs:
test:
name: Run static analysis and tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package.json
- name: Upgrade npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Run Markdown checks
run: npm run check-markdown
- name: Run format
run: npm run format
- name: Run eslint
run: npm run lint
# - name: Typecheck
# run: npm run typecheck
- name: Run audit (all, with exclusions)
run: npm run audit-all
- name: Run audit (prod, no exclusions)
run: npm run audit-prod
- name: Copy config file
run: mkdir -p ./public/config && cp config_helper/config.example.json ./public/config/config.json
- name: Run unit tests
run: npm run test
- name: Run dev build
run: npm run build