From d09360c390a8332976fc9a2f04d6109846d4d9e6 Mon Sep 17 00:00:00 2001 From: Regalijan Date: Fri, 13 Mar 2026 04:07:59 -0400 Subject: [PATCH] Avoid using npm run for formatting check (something up with the runner?) --- .gitea/workflows/build-publish.yaml | 2 +- package.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/build-publish.yaml b/.gitea/workflows/build-publish.yaml index f08fc84..0cd250f 100644 --- a/.gitea/workflows/build-publish.yaml +++ b/.gitea/workflows/build-publish.yaml @@ -21,7 +21,7 @@ jobs: run: npm install - name: Check Formatting - run: npm run check-format + run: npx prettier -c . - name: Build run: npm run build diff --git a/package.json b/package.json index 3a131f9..70381a9 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,6 @@ "type": "module", "scripts": { "build": "remix build --sourcemap", - "check-format": "prettier -c .", "format": "prettier -wc .", "publish": "remix build --sourcemap && wrangler pages deploy public" },