do not export getAddressCredentials to the surface #1310
Workflow file for this run
This file contains hidden or 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: Bundle Size | |
| # on: | |
| # pull_request: | |
| # jobs: | |
| # build: | |
| # env: | |
| # NODE: "20" | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - name: Setup pnpm | |
| # uses: pnpm/action-setup@v4 | |
| # - name: Install Node.js | |
| # uses: actions/setup-node@v4 | |
| # with: | |
| # node-version: ${{ env.NODE }} | |
| # - name: Enable Corepack | |
| # run: corepack enable | |
| # - name: Report Bundle Size | |
| # uses: preactjs/compressed-size-action@v2 | |
| # with: | |
| # repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| # install-script: "pnpm install --frozen-lockfile" | |
| # build-script: "build:lib:all" | |
| # clean-script: "clean:bundle-size" | |
| # pattern: "dist/*.js" | |
| # compression: "none" |