From a7d329262415cedb29f7d3ec62c8cfd397ab1526 Mon Sep 17 00:00:00 2001 From: Evan Jarrett Date: Thu, 15 Jan 2026 23:24:37 -0600 Subject: [PATCH] try without node or generate --- .tangled/workflows/lint.yaml | 6 ------ .tangled/workflows/tests.yml | 7 ------- 2 files changed, 13 deletions(-) diff --git a/.tangled/workflows/lint.yaml b/.tangled/workflows/lint.yaml index 18e77e1..ae512e2 100644 --- a/.tangled/workflows/lint.yaml +++ b/.tangled/workflows/lint.yaml @@ -9,12 +9,6 @@ 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 diff --git a/.tangled/workflows/tests.yml b/.tangled/workflows/tests.yml index 554be08..45c30e4 100644 --- a/.tangled/workflows/tests.yml +++ b/.tangled/workflows/tests.yml @@ -9,18 +9,11 @@ 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 generate ./... - name: Run Tests environment: