Skip to content

feat: Add health check endpoint for monitoring bot status #1

feat: Add health check endpoint for monitoring bot status

feat: Add health check endpoint for monitoring bot status #1

Workflow file for this run

name: Lint & Format Check
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
- master
jobs:
lint:
name: ESLint
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: Run ESLint
run: npm run lint
prettier:
name: Prettier 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 formatting
run: npm run format:check
markdown:
name: Markdown Lint
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: Lint markdown files
run: npm run markdown:lint