From 0a3dfd0b3428cfe8d83f7857fdfdf889a6ac754b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Dec 2025 20:15:44 +0000 Subject: [PATCH] Fix workflow caching logic and remove hardcoded version from instructions Co-authored-by: thomasnordquist <7721625+thomasnordquist@users.noreply.github.com> --- .github/copilot-instructions.md | 2 +- .github/workflows/copilot-setup.yml | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 8e5c6915..ef6ce37e 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -99,6 +99,6 @@ The project supports MCP (Model Context Protocol) for automated testing with Pla ## Important Notes - Always run `yarn build` before starting the application -- The app uses Electron 29.2.0 +- The app uses Electron (see `package.json` for version) - MQTT communication is handled via [mqttjs](https://github.com/mqttjs/MQTT.js) - All code changes should pass linting (`yarn lint`) diff --git a/.github/workflows/copilot-setup.yml b/.github/workflows/copilot-setup.yml index 0adff162..e56a02d6 100644 --- a/.github/workflows/copilot-setup.yml +++ b/.github/workflows/copilot-setup.yml @@ -33,12 +33,7 @@ jobs: ${{ runner.os }}-yarn- - name: Install dependencies - if: steps.yarn-cache.outputs.cache-hit != 'true' run: yarn install --frozen-lockfile - - name: Install app dependencies - if: steps.yarn-cache.outputs.cache-hit != 'true' - run: cd app && yarn install --frozen-lockfile - - name: Build project run: yarn build