From 47ab7e62b4f4a761334fd554248a689f55f40cbf Mon Sep 17 00:00:00 2001 From: Juhyeok Kang Date: Mon, 29 Jul 2024 00:43:51 +0900 Subject: [PATCH] chore: remove actions-next-bundle analyzer in CI (#1159) # Overview Related with https://github.com/toss/suspensive/pull/1157#issuecomment-2254481894 Remove actions-next-bundle analyzer in CI. ## PR Checklist - [x] I did below actions if need 1. I read the [Contributing Guide](https://github.com/toss/suspensive/blob/main/CONTRIBUTING.md) 2. I added documents and tests. --- .github/workflows/ci.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0108a1a81..38cc7b5ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,6 @@ jobs: quality: name: Check quality runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write strategy: matrix: command: @@ -60,10 +57,3 @@ jobs: pattern: 'packages/**/dist/*.{js,cjs,mjs}' exclude: '{**/*.map,**/node_modules/**}' repo-token: ${{ secrets.GITHUB_TOKEN }} - - if: matrix.command == 'build' - uses: transferwise/actions-next-bundle-analyzer@v2 - with: - working-directory: ./websites/visualization - comment-strategy: 'always' - create-issue: false - github-token: ${{ secrets.GITHUB_TOKEN }}