From b99ae537558a184e7b647879e49957b432bbbcb0 Mon Sep 17 00:00:00 2001 From: Evan Jarrett Date: Thu, 15 Jan 2026 23:22:47 -0600 Subject: [PATCH] fix workflows --- .tangled/workflows/lint.yaml | 7 ++++++- .tangled/workflows/tests.yml | 6 ++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.tangled/workflows/lint.yaml b/.tangled/workflows/lint.yaml index 24af4c9..18e77e1 100644 --- a/.tangled/workflows/lint.yaml +++ b/.tangled/workflows/lint.yaml @@ -9,13 +9,18 @@ image: golang:1.25-trixie architecture: amd64 steps: + - name: install node + command: | + apt-get update && \ + apt-get install -y --no-install-recommends nodejs npm && \ + rm -rf /var/lib/apt/lists/* + - name: Download and Generate environment: CGO_ENABLED: 1 command: | go mod download go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.7.2 - go generate ./... - name: Run Linter environment: diff --git a/.tangled/workflows/tests.yml b/.tangled/workflows/tests.yml index a17423f..554be08 100644 --- a/.tangled/workflows/tests.yml +++ b/.tangled/workflows/tests.yml @@ -9,6 +9,12 @@ image: golang:1.25-trixie architecture: amd64 steps: + - name: install node + command: | + apt-get update && \ + apt-get install -y --no-install-recommends nodejs npm && \ + rm -rf /var/lib/apt/lists/* + - name: Download and Generate environment: CGO_ENABLED: 1