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
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,24 +80,22 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: './frontend/package-lock.json'
bun-version: latest

- name: Install dependencies
working-directory: ./frontend
run: npm ci
run: bun install

- name: Build frontend
working-directory: ./frontend
run: npm run build
run: bun run build

- name: Check TypeScript
working-directory: ./frontend
run: npx tsc --noEmit
run: bun run tsc --noEmit

security-scan:
name: Security Scan
Expand Down
12 changes: 12 additions & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ node_modules/
.pnp
.pnp.js

# Package manager locks (using bun.lockb)
package-lock.json
yarn.lock
pnpm-lock.yaml

# Testing
coverage/

Expand Down Expand Up @@ -30,7 +35,14 @@ Thumbs.db
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Vite
.vite/
*.local

# Bun
.bun/

# Vercel
.vercel
772 changes: 772 additions & 0 deletions frontend/bun.lock

Large diffs are not rendered by default.

Loading