Skip to content

Merge pull request #25 from PackmindHub/claude/verify-api-security-xcKgw #25

Merge pull request #25 from PackmindHub/claude/verify-api-security-xcKgw

Merge pull request #25 from PackmindHub/claude/verify-api-security-xcKgw #25

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.10
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Test
run: bun run test
- name: Build
run: bun run build
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build production image (no push)
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
push: false
tags: skillsight:ci
cache-from: type=gha
cache-to: type=gha,mode=max