From 17f11f0d7ef8316af4d4209c0a49d0e5ba71ee55 Mon Sep 17 00:00:00 2001 From: chyzwar Date: Fri, 20 Sep 2024 16:06:15 +0200 Subject: [PATCH] chore(root): fetch full history on checkout to fix Version bump only --- .github/workflows/checks.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 24fe162..2f59302 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -11,6 +11,8 @@ jobs: steps: - name: "Checkout" uses: actions/checkout@v4 + with: + fetch-depth: "0" - name: "Use NodeJS 20" uses: actions/setup-node@v4 @@ -28,4 +30,4 @@ jobs: run: yarn test - name: Run lint - run: yarn lint \ No newline at end of file + run: yarn lint