Skip to content

build(deps): bump nodemailer from 6.8.0 to 6.9.9 #551

build(deps): bump nodemailer from 6.8.0 to 6.9.9

build(deps): bump nodemailer from 6.8.0 to 6.9.9 #551

Workflow file for this run

name: Check Formatting
on:
workflow_dispatch:
pull_request:
paths-ignore:
- 'validator/**'
jobs:
eslint:
name: Run ESLint + Prettier
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Node.js Dependencies
run: npm ci
- name: Generate Prisma Client
run: npm run prisma:generate
- name: Run ESLint
run: npm run lint:check
- name: Run Prettier
run: npm run format:check