From a202f4b0ff71fab410fdffdd0f396cfbec218b9d Mon Sep 17 00:00:00 2001 From: Shahar Dawn Or Date: Tue, 8 Nov 2022 14:09:49 +0700 Subject: [PATCH] build: workaround some commitlint issue --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5b896229..3676aa7b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -40,7 +40,11 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 # for commit linting + # Hiding tsconfig.json to workaround + # https://github.com/conventional-changelog/commitlint/issues/3256 + - run: mv tsconfig.json tsconfig.json.nope - uses: wagoid/commitlint-github-action@v5 + - run: mv tsconfig.json.nope tsconfig.json - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }}