Skip to content

Implement Event Sourcing for Audit Trail #482

Implement Event Sourcing for Audit Trail

Implement Event Sourcing for Audit Trail #482

Workflow file for this run

name: Backend CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: backend/package-lock.json
- run: npm ci
working-directory: backend