Skip to content
Merged
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
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
push:
branches: [master]
pull_request:

jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- name: Install dependencies
run: npm ci

# Blocking gates — these must pass before the app can be deployed.
- name: Test
run: npm test

- name: Build
run: npm run build

# Informational for now (the codebase still has pre-existing `any`s to
# clean up); flip to blocking once the lint backlog is cleared.
- name: Lint
run: npm run lint
continue-on-error: true
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,9 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# --- LinearCal deploy agent: credentials + local tooling, NEVER commit ---
# (the .env* rule above misses files that *end* in .env, like linearcal-agent.env)
*.env
linearcal-agent.env
/deploy-agent/
Loading
Loading