diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml index 31a5351..0df6932 100644 --- a/.github/workflows/cypress.yaml +++ b/.github/workflows/cypress.yaml @@ -26,10 +26,13 @@ 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@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 diff --git a/.github/workflows/run_npm.yaml b/.github/workflows/run_npm.yaml index 2e8cada..032be99 100644 --- a/.github/workflows/run_npm.yaml +++ b/.github/workflows/run_npm.yaml @@ -30,8 +30,12 @@ jobs: - "self-hosted" - "node-${{ inputs.node_version }}" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 + with: + fetch-depth: 1 + fetch-tags: false + - 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 }}