Skip to content

feat: Migrate email service from Nodemailer to Resend #1247 #73

feat: Migrate email service from Nodemailer to Resend #1247

feat: Migrate email service from Nodemailer to Resend #1247 #73

Workflow file for this run

name: Code Format Check
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check code formatting
run: npm run format:check
- name: Check linting
run: npm run lint