Some checks failed
CI / ci (push) Failing after 8s
Install python3/make/g++ in Dockerfile deps stage for drizzle-kit's better-sqlite3 dependency. Use --ignore-scripts in CI workflows since lint, test, and build don't need the native module. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
458 B
YAML
29 lines
458 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [Develop]
|
|
pull_request:
|
|
branches: [Develop]
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: docker
|
|
container:
|
|
image: oven/bun:1
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: bun install --frozen-lockfile --ignore-scripts
|
|
|
|
- name: Lint
|
|
run: bun run lint
|
|
|
|
- name: Test
|
|
run: bun test
|
|
|
|
- name: Build
|
|
run: bun run build
|