fix(common): ensure all control bar icons are hidden when isLive is enabled #164
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Compressed Size | |
# env: | |
# NODE_OPTIONS: --max-old-space-size=6144 | |
# on: | |
# pull_request: | |
# types: | |
# - 'opened' | |
# - 'synchronize' | |
# paths-ignore: | |
# - '**/*.md' | |
# concurrency: | |
# group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
# cancel-in-progress: true | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: setup node.js | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20.x | |
# - name: Install pnpm | |
# uses: pnpm/action-setup@v4 | |
# with: | |
# version: latest | |
# run_install: false | |
# - name: Get pnpm store directory | |
# id: pnpm-cache | |
# run: | | |
# echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | |
# - uses: actions/cache@v4 | |
# name: Setup pnpm cache | |
# with: | |
# path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | |
# key: ${{ runner.os }}-pnpm-store-compressed-size-${{ hashFiles('**/pnpm-lock.yaml') }} | |
# restore-keys: | | |
# ${{ runner.os }}-pnpm-store-compressed-size- | |
# - uses: preactjs/compressed-size-action@v2 | |
# with: | |
# build-script: 'build:packs' | |
# repo-token: '${{ secrets.GIT_HUB_TOKEN }}' | |
# pattern: './packages/*/{dist,compiled}/**/*.js' |