Skip to content

fix(auth): accept ea_* prefix in isApiKey — unblocks static-bearer path for #28 #3

fix(auth): accept ea_* prefix in isApiKey — unblocks static-bearer path for #28

fix(auth): accept ea_* prefix in isApiKey — unblocks static-bearer path for #28 #3

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
ci:
name: typecheck + test + audit
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: TypeScript strict check
run: npm run typecheck
- name: Run tests
run: npm test
- name: npm audit (high+ advisories)
run: npm audit --audit-level=high
continue-on-error: true