Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint --if-present
- name: Build / Typecheck
run: npm run build --if-present
- name: Run tests
run: npm test --if-present
20 changes: 20 additions & 0 deletions exora/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,25 @@ Canonical inference guides alias filtering, disambiguates homonyms, and drives e
- No logging of raw keys
- All enrichment transient per request

## Continuous Integration (CI)

This repository includes a GitHub Actions workflow that runs on push and pull request to enforce quality checks.

- What it runs: dependency install, linter (if present), build/typecheck (if present), and tests (if present).
- Workflow file: `.github/workflows/ci.yml`.

To run the same checks locally use:

```powershell
npm ci
npm run lint # if present
npm run build # if present (often performs TypeScript typechecking)
npm test # if present
```

If any of those scripts are missing the workflow currently uses `--if-present` so CI will not fail solely because a script is not defined. If you'd prefer stricter behavior (fail when scripts are missing), update the workflow to remove `--if-present`.


---
## 🖥️ Local Development
```bash
Expand Down Expand Up @@ -170,3 +189,4 @@ Consider further enhancement with a future compact mode (reduced padding + conde
---
## �📬 Contact
For questions or collaboration: open an issue or reach out via GitHub profile.

Loading