From 3861287456c307b54172657400ef9b9305684455 Mon Sep 17 00:00:00 2001 From: Samantha Nguyen Date: Fri, 2 Jan 2026 19:25:56 -0600 Subject: [PATCH] ci: fix minor issues with CI workflows --- .tangled/workflows/build.yml | 5 ++--- .tangled/workflows/codeqa-fmt.yml | 7 +++---- .tangled/workflows/codeqa-lint.yml | 7 +++---- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.tangled/workflows/build.yml b/.tangled/workflows/build.yml index 2138a3f..407b3da 100644 --- a/.tangled/workflows/build.yml +++ b/.tangled/workflows/build.yml @@ -1,9 +1,8 @@ when: - - event: ["pull_request"] + - event: ["push", "pull_request"] branch: ["main"] -engine: - - nixery +engine: "nixery" dependencies: nixpkgs: diff --git a/.tangled/workflows/codeqa-fmt.yml b/.tangled/workflows/codeqa-fmt.yml index b3591b6..9b51eb5 100644 --- a/.tangled/workflows/codeqa-fmt.yml +++ b/.tangled/workflows/codeqa-fmt.yml @@ -1,9 +1,8 @@ when: - - event: ["pull_request"] + - event: ["push", "pull_request"] branch: ["main"] -engine: - - nixery +engine: "nixery" dependencies: nixpkgs: @@ -14,4 +13,4 @@ steps: - name: Install dependencies command: pnpm install --frozen-lockfile - name: Run formatter checks - command: npm run fmt-check + command: pnpm run fmt-ci diff --git a/.tangled/workflows/codeqa-lint.yml b/.tangled/workflows/codeqa-lint.yml index aa05ec9..4a39705 100644 --- a/.tangled/workflows/codeqa-lint.yml +++ b/.tangled/workflows/codeqa-lint.yml @@ -1,9 +1,8 @@ when: - - event: ["pull_request"] + - event: ["push", "pull_request"] branch: ["main"] -engine: - - nixery +engine: "nixery" dependencies: nixpkgs: @@ -14,4 +13,4 @@ steps: - name: Install dependencies command: pnpm install --frozen-lockfile - name: Run linter checks - command: npm run lint + command: pnpm run lint -- 2.43.0 From 7bf1233a66eb98b478f3b074d14ebab6e18c28d5 Mon Sep 17 00:00:00 2001 From: Samantha Nguyen Date: Fri, 2 Jan 2026 19:29:49 -0600 Subject: [PATCH] ci: add coreutils as CI dependency --- .tangled/workflows/build.yml | 1 + .tangled/workflows/codeqa-fmt.yml | 1 + .tangled/workflows/codeqa-lint.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.tangled/workflows/build.yml b/.tangled/workflows/build.yml index 407b3da..d6dc3fc 100644 --- a/.tangled/workflows/build.yml +++ b/.tangled/workflows/build.yml @@ -6,6 +6,7 @@ engine: "nixery" dependencies: nixpkgs: + - coreutils - nodejs_24 - pnpm diff --git a/.tangled/workflows/codeqa-fmt.yml b/.tangled/workflows/codeqa-fmt.yml index 9b51eb5..1077484 100644 --- a/.tangled/workflows/codeqa-fmt.yml +++ b/.tangled/workflows/codeqa-fmt.yml @@ -6,6 +6,7 @@ engine: "nixery" dependencies: nixpkgs: + - coreutils - nodejs_24 - pnpm diff --git a/.tangled/workflows/codeqa-lint.yml b/.tangled/workflows/codeqa-lint.yml index 4a39705..3b10a8a 100644 --- a/.tangled/workflows/codeqa-lint.yml +++ b/.tangled/workflows/codeqa-lint.yml @@ -6,6 +6,7 @@ engine: "nixery" dependencies: nixpkgs: + - coreutils - nodejs_24 - pnpm -- 2.43.0