Rewrite to TidalLuna of All Plugins

This commit is contained in:
2025-05-31 23:44:22 +10:00
parent 20698aea3a
commit 5d433ce4d1
49 changed files with 1668 additions and 2867 deletions
+35
View File
@@ -0,0 +1,35 @@
name: "Validate & Build"
on:
workflow_call:
jobs:
Sanity:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm 📥
uses: pnpm/action-setup@v4
with:
version: latest
- name: Install Node.js 📥
uses: actions/setup-node@v4
with:
cache: pnpm
node-version: latest
- name: Install dependencies 📥
run: pnpm install
- name: Build
run: pnpm run build
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: luna-artifacts
path: ./dist