From e7184e4d4797f59a0f855c931c714626a6c04223 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 13 Jan 2025 12:32:20 -0800 Subject: [PATCH] Fix releases lint --- .github/workflows/release.yml | 3 +++ package.json | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83c6cedf..51eee51b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,6 +76,9 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} + - name: Run JS build + run: npm run build + - name: Run lint run: npm run lint diff --git a/package.json b/package.json index c69a0207..aec988fa 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "start": "npm run app-dev", "app-build": "tauri build", "app-dev": "tauri dev --no-watch --config ./src-tauri/tauri-dev.conf.json", + "build": "npm run --workspaces --if-present build", "bootstrap": "run-p bootstrap:* && npm run --workspaces --if-present bootstrap", "bootstrap:vendor-node": "node scripts/vendor-node.cjs", "bootstrap:vendor-plugins": "node scripts/vendor-plugins.cjs",