From 23595f03aecdd01af79f6965dd563dafa22719e2 Mon Sep 17 00:00:00 2001 From: David Blass Date: Wed, 22 May 2024 17:21:13 -0400 Subject: [PATCH] iterate on ci --- .github/actions/setup/action.yml | 5 ----- .github/workflows/pr.yml | 10 ++++++++++ .github/workflows/publish.yml | 10 ++++++++++ 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index c6de07cbfd..4c3b950ca3 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -18,11 +18,6 @@ runs: with: version: 9 - - name: Checkout repo - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Install dependencies shell: bash run: pnpm install diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 312b399444..64dc0ec1c2 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -13,6 +13,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: + - name: Checkout repo + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup repo uses: ./.github/actions/setup @@ -35,6 +40,11 @@ jobs: runs-on: ${{ matrix.os }} steps: + - name: Checkout repo + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup repo uses: ./.github/actions/setup with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 946f33ee46..06bf7eff73 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,6 +12,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: + - name: Checkout repo + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup repo uses: ./.github/actions/setup @@ -37,6 +42,11 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: + - name: Checkout repo + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup repo uses: ./.github/actions/setup