chore: implement build test #1

Merged
Sebastian merged 1 commits from chore/implement-build-test into main 2026-02-11 04:36:44 +00:00
Showing only changes of commit c9716295f8 - Show all commits

View File

@@ -0,0 +1,23 @@
name: Build Test
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Set up Node.js
uses: actions/setup-node@v6.2.0
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build