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: