Merge branch 'main' of git.warky.dev:wdevs/amcs into issue-10-per-user-tenancy
CI / build-and-test (push) Successful in 1m39s
CI / build-and-test (pull_request) Successful in 2m3s

This commit is contained in:
Hein
2026-07-15 12:48:10 +02:00
11 changed files with 826 additions and 37 deletions
+26 -6
View File
@@ -39,16 +39,36 @@ jobs:
- name: Download dependencies
run: go mod download
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install pnpm
run: npm install -g pnpm
- name: Build UI
run: |
cd ui
pnpm install --frozen-lockfile
pnpm run build
- name: Tidy modules
run: go mod tidy
- name: Install UI dependencies
run: pnpm install --frozen-lockfile
working-directory: ui
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Build UI assets
run: pnpm run build
working-directory: ui
- name: Install pnpm
run: npm install -g pnpm
- name: Build UI
run: |
cd ui
pnpm install --frozen-lockfile
pnpm run build
- name: Run tests
run: go test ./...