(feature) O3-3859 Ability to customize or add logos at the bottom of the LogIn page below the "Powered by" #1369
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: Report bundle size | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
TURBO_API: 'http://127.0.0.1:9080' | |
TURBO_TOKEN: ${{ secrets.TURBO_SERVER_TOKEN }} | |
TURBO_TEAM: ${{ github.repository_owner }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup a local cache server for Turborepo | |
uses: felixmosh/turborepo-gh-artifacts@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
server-token: ${{ secrets.TURBO_SERVER_TOKEN }} | |
- name: Compute bundle size report | |
uses: preactjs/compressed-size-action@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
minimum-change-threshold: 10000 # 10 KB | |
build-script: "turbo run build --color" |