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" },