Compare commits

...

2 Commits

Author SHA1 Message Date
c6f42ecb29 zone 4
Some checks failed
Zone / build (push) Failing after 58s
2026-05-08 14:43:21 +01:00
b5a4fff763 zone 3 2026-05-08 14:43:13 +01:00
2 changed files with 14 additions and 1 deletions

15
.gitea/workflows/build.yml Normal file → Executable file
View File

@@ -3,7 +3,7 @@ name: Zone
on: on:
push: push:
branches: branches:
- main - master
schedule: schedule:
- cron: "0 0 * * *" - cron: "0 0 * * *"
@@ -18,3 +18,16 @@ jobs:
- name: Check out repo - name: Check out repo
uses: actions/checkout@v4 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
shell: pwsh
env:
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
run: ./scripts/gated-analysis.ps1

0
scripts/gated-analysis.ps1 Normal file → Executable file
View File