From 749ace3c490251f03897411bf3c1010e0e2a8bb4 Mon Sep 17 00:00:00 2001 From: rongquan1 Date: Thu, 5 Feb 2026 17:09:16 +0800 Subject: [PATCH] fix: fetch full git history in CI checkout --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7dd6ff0..1dda17e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,8 @@ jobs: node-version: [22.x] steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }}