Skip to content

feat(syslog): implement binary protocol parser for os_trace_relay #552

feat(syslog): implement binary protocol parser for os_trace_relay

feat(syslog): implement binary protocol parser for os_trace_relay #552

Workflow file for this run

name: Format Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format-check:
runs-on: macos-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v3
- name: Use Node.js (LTS)
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v3
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm install
- name: Check formatting
# Run prettier in check mode (doesn't modify files)
run: npm run format:check
- name: Format instructions (if check fails)
if: ${{ failure() }}
run: |
echo "::error::Formatting issues detected. Run 'npm run format' locally to fix."