Skip to content

test: add workflow configuration for CI #1

test: add workflow configuration for CI

test: add workflow configuration for CI #1

Workflow file for this run

name: CI Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "22"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Set up uv package manager
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: npm install
- name: Run custom build script
run: ./scripts/build.sh