From 35612f34dd163a8583e30cac1f55f583adb0a318 Mon Sep 17 00:00:00 2001 From: Regalijan Date: Fri, 13 Mar 2026 04:15:59 -0400 Subject: [PATCH] Force include dev dependencies --- .gitea/workflows/build-publish.yaml | 10 +++++----- package.json | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build-publish.yaml b/.gitea/workflows/build-publish.yaml index 0cd250f..3933d27 100644 --- a/.gitea/workflows/build-publish.yaml +++ b/.gitea/workflows/build-publish.yaml @@ -6,9 +6,6 @@ jobs: name: Test, Build, and Deploy runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - - name: Install Node.js uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f with: @@ -17,11 +14,14 @@ jobs: - name: Install Wrangler run: npm install -g wrangler + - name: Checkout + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd + - name: Install Dependencies - run: npm install + run: npm ci --include=dev - name: Check Formatting - run: npx prettier -c . + run: npm run check-format - name: Build run: npm run build diff --git a/package.json b/package.json index 70381a9..3a131f9 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "type": "module", "scripts": { "build": "remix build --sourcemap", + "check-format": "prettier -c .", "format": "prettier -wc .", "publish": "remix build --sourcemap && wrangler pages deploy public" },