From 376444d8ba2626aee6ac28246eb0a6578bdbce01 Mon Sep 17 00:00:00 2001 From: aditya-pingale Date: Wed, 5 Aug 2026 12:06:30 -0400 Subject: [PATCH 1/4] try checkout job version 5 --- .github/workflows/run_npm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_npm.yaml b/.github/workflows/run_npm.yaml index 2e8cada..efb49d5 100644 --- a/.github/workflows/run_npm.yaml +++ b/.github/workflows/run_npm.yaml @@ -30,8 +30,8 @@ jobs: - "self-hosted" - "node-${{ inputs.node_version }}" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: "Install dependencies" run: npm ci - name: "Run ${{ inputs.script }}" - run: npm run --if-present ${{ inputs.script }} \ No newline at end of file + run: npm run --if-present ${{ inputs.script }} From d80c700c1075210320f4c14df791682593ab5a92 Mon Sep 17 00:00:00 2001 From: aditya-pingale Date: Wed, 5 Aug 2026 13:25:15 -0400 Subject: [PATCH 2/4] depth set to 1 --- .github/workflows/run_npm.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/run_npm.yaml b/.github/workflows/run_npm.yaml index efb49d5..032be99 100644 --- a/.github/workflows/run_npm.yaml +++ b/.github/workflows/run_npm.yaml @@ -31,6 +31,10 @@ jobs: - "node-${{ inputs.node_version }}" steps: - uses: actions/checkout@v5 + with: + fetch-depth: 1 + fetch-tags: false + - name: "Install dependencies" run: npm ci - name: "Run ${{ inputs.script }}" From 770667fa2aa3d7ff05c15cbd89f552edbf81917b Mon Sep 17 00:00:00 2001 From: aditya-pingale Date: Wed, 5 Aug 2026 13:36:02 -0400 Subject: [PATCH 3/4] same changes for cypress --- .github/workflows/cypress.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml index 31a5351..737852c 100644 --- a/.github/workflows/cypress.yaml +++ b/.github/workflows/cypress.yaml @@ -29,7 +29,10 @@ jobs: runs-on: ["self-hosted","node-${{ inputs.node_version }}","west"] steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 + with: + fetch-depth: 1 + fetch-tags: false - name: Cypress headless test if: inputs.type == 'push' uses: cypress-io/github-action@v6 From a90b4698e2e7abd182bf7599e5903b87fd1a289b Mon Sep 17 00:00:00 2001 From: aditya-pingale Date: Wed, 5 Aug 2026 18:25:14 -0400 Subject: [PATCH 4/4] test on east coast --- .github/workflows/cypress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml index 737852c..0df6932 100644 --- a/.github/workflows/cypress.yaml +++ b/.github/workflows/cypress.yaml @@ -26,7 +26,7 @@ on: jobs: cypress-test: - runs-on: ["self-hosted","node-${{ inputs.node_version }}","west"] + runs-on: ["self-hosted","node-${{ inputs.node_version }}","east"] steps: - name: Checkout uses: actions/checkout@v5