chore: rename GitHub workflow and issue template files
Build Validation / build (push) Successful in 1m28s

This commit is contained in:
2026-07-21 12:53:12 +02:00
parent b17ff5b52e
commit 3047b9a9fe
10 changed files with 0 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
name: Build Validation
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: use NodeJS v22.22.3
uses: actions/setup-node@v4
with:
node-version: '22.22.3'
- name: Install Dependencies
run: npm ci
- name: Run Checks
run: npm run check
- name: Run Build
run: npm run build