From 20574689b7313458ff689c076c485bab32751bf8 Mon Sep 17 00:00:00 2001 From: dwightjack Date: Fri, 3 Oct 2025 18:34:01 +0900 Subject: [PATCH] ci: temporary disable code coverage --- .github/workflows/build.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 914e8a4c..c5492653 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,8 +2,8 @@ name: Build and Release on: push: paths-ignore: - - 'packages/docs/**' - - 'README.md' + - "packages/docs/**" + - "README.md" concurrency: ${{ github.workflow }}-${{ github.ref }} @@ -23,9 +23,9 @@ jobs: - uses: pnpm/action-setup@v2 - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 with: - node-version-file: '.nvmrc' - cache: 'pnpm' - registry-url: 'https://registry.npmjs.org' + node-version-file: ".nvmrc" + cache: "pnpm" + registry-url: "https://registry.npmjs.org" - run: pnpm i - name: Build run: pnpm build @@ -34,13 +34,13 @@ jobs: - name: Test run: pnpm test - - name: Upload code coverage - uses: paambaati/codeclimate-action@f429536ee076d758a24705203199548125a28ca7 # v9.0.0 - env: - CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} - with: - coverageLocations: ${{github.workspace}}/packages/core/coverage/lcov.info:lcov - prefix: test + # - name: Upload code coverage + # uses: paambaati/codeclimate-action@f429536ee076d758a24705203199548125a28ca7 # v9.0.0 + # env: + # CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} + # with: + # coverageLocations: ${{github.workspace}}/packages/core/coverage/lcov.info:lcov + # prefix: test - name: Create Release Pull Request or Publish to npm id: changesets if: github.ref_name == 'main' @@ -48,8 +48,8 @@ jobs: with: version: pnpm run ci:version # pnpm changeset version && pnpm install --lockfile-only publish: pnpm run ci:publish - commit: 'chore: update versions' - title: 'Release: new versions' + commit: "chore: update versions" + title: "Release: new versions" createGithubReleases: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}