Add build workflow for CI/CD pipeline

This commit is contained in:
2026-03-05 22:48:27 +01:00
parent 71ec95b52b
commit e246657740

View File

@@ -0,0 +1,24 @@
name: build
on:
push:
paths:
- 'src/**'
- package.json
- package-lock.json
- tsconfig.json
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build