From 5a53fbbb0154bc57940346fdf783331f477c0a7f Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 7 Jun 2025 12:52:33 +0300 Subject: [PATCH] chore(ci): get rid of size reporters --- .github/workflows/dev.yml | 69 --------------------------------------- 1 file changed, 69 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 0b3f768de..2e8c786ce 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -41,75 +41,6 @@ jobs: - name: Check affected run: pnpm nx affected --verbose -t typecheck build rebuild-deps - report-electron-size: - name: Report Electron size - runs-on: ubuntu-latest - needs: - - check-affected - steps: - - name: Checkout the repository - uses: actions/checkout@v4 - - - uses: pnpm/action-setup@v4 - - name: Set up node & dependencies - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: 'pnpm' - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Run the build - uses: ./.github/actions/build-electron - with: - os: linux - arch: x64 - shell: bash - forge_platform: linux - - - name: Run the Electron size report - uses: ./.github/actions/report-size - with: - paths: 'upload/**/*' - onlyDiff: 'true' - branch: 'develop' - header: 'Electron size report' - unit: "MB" - ghToken: ${{ secrets.GITHUB_TOKEN }} - report-server-size: - name: Report server size - runs-on: ubuntu-latest - needs: - - check-affected - steps: - - name: Checkout the repository - uses: actions/checkout@v4 - - - uses: pnpm/action-setup@v4 - - name: Set up node & dependencies - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: "pnpm" - - - run: pnpm install --frozen-lockfile - - - name: Run the build - uses: ./.github/actions/build-server - with: - os: linux - arch: x64 - - - name: Run the server size report - uses: ./.github/actions/report-size - with: - paths: 'upload/**/*' - onlyDiff: 'true' - branch: 'develop' - header: 'Server size report' - unit: "MB" - ghToken: ${{ secrets.GITHUB_TOKEN }} - test_dev: name: Test development runs-on: ubuntu-latest