Files
Discord-Audio-Stream/.gitea/workflows/Build-Validation.yml
T
2026-07-21 13:39:44 +02:00

31 lines
685 B
YAML

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: https://gitea.com/actions/checkout@v4
- name: use NodeJS v22.22.3
uses: https://gitea.com/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