From 7f9a1de057f857da5edc501257cf36ca3b80098c Mon Sep 17 00:00:00 2001 From: MDLeom <43627182+curbengh@users.noreply.github.com> Date: Thu, 17 Jul 2025 10:40:03 +0000 Subject: [PATCH] fix(jest): install jest-circus required in ubuntu+node20 --- .github/workflows/tester.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 36e4eca..80f4630 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -23,7 +23,16 @@ jobs: key: ${{ runner.os }}-npm-cache restore-keys: ${{ runner.os }}-npm-cache - name: Install Dependencies - run: npm install + run: npm install --include=optional --force + - name: Show deps structure + run: find /home/runner/work/hexo-yam/ -type d + - name: "Upload Artifact" + if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20' + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.os }}-${{ matrix.node-version }}-node_modules + path: ./node_modules/ + retention-days: 1 - name: Test run: npm run test env: