Skip to content

build(deps-dev): bump eslint from 8.57.0 to 9.6.0 #244

build(deps-dev): bump eslint from 8.57.0 to 9.6.0

build(deps-dev): bump eslint from 8.57.0 to 9.6.0 #244

Workflow file for this run

name: "Test the PR"
on:
pull_request:
branches:
- main
jobs:
run_test:
name: "Run tests"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases
steps:
- uses: actions/checkout@v3
- name: Install modules
run: npm ci
- name: Check code formatting
run: npm run lint
- name: Generate Prisma Client
run: npm run prisma:gen
env:
DB_PROVIDER: ${{ vars.DB_PROVIDER || 'mongodb' }}
- name: Build
run: npm run build
- name: Run unit tests
run: npm run test