Files
zone/.gitea/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: line 29: found a tab character that violates indentation
2026-05-08 14:49:07 +01:00

33 lines
630 B
YAML
Executable File

name: Zone
on:
push:
branches:
- master
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: site-build
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run gated analysis
if: always()
env:
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
run: /snap/bin/pwsh -NoProfile -File ./scripts/gated-analysis.ps1