Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/operator-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
go-version-file: apps/operator/go.mod
cache-dependency-path: apps/operator/go.sum

- name: Run linter
uses: golangci/golangci-lint-action@v8
uses: golangci/golangci-lint-action@v9
Comment thread
PhuocHoan marked this conversation as resolved.
with:
version: v2.11.3
version: v2.12.2
working-directory: apps/operator

test:
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
go-version-file: apps/operator/go.mod
cache-dependency-path: apps/operator/go.sum

- name: Run tests
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/portal-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ on:

jobs:
build-and-test:
name: Build and Check
name: Build and Check (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["22", "24"]
defaults:
run:
working-directory: apps/portal
Expand All @@ -24,7 +27,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
node-version: ${{ matrix.node-version }}
cache: "yarn"
cache-dependency-path: "apps/portal/yarn.lock"

Expand Down
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,14 @@ apps/portal/packages/backend/*.sqlite
.idea

# mise
mise.toml
mise.toml

# Terraform local cache and state files
**/.terraform/
**/*.tfstate
**/*.tfstate.backup
**/*.tfstate.lock.info

# AI skills
skills-lock.json
.agents/
Loading