Skip to content

Feature/privacy ai advanced #145

Feature/privacy ai advanced

Feature/privacy ai advanced #145

Workflow file for this run

name: Linting and Formatting Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install libpcap-dev
run: sudo apt-get update && sudo apt-get install -y libpcap-dev
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Prettier format check
run: npm run format:check
- name: Run ESLint
run: npm run lint
- name: Run TypeScript type check
run: npm run typecheck