Add Server.getSACBalance
for fetching built-in token balance entries
#530
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: Bundle Size | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
# Workaround for some `yarn` nonsense, see: | |
# https://github.com/yarnpkg/yarn/issues/6312#issuecomment-429685210 | |
- name: Install Dependencies | |
run: yarn install --network-concurrency 1 | |
- name: Build All | |
run: yarn build:prod | |
- name: Report Bundle Size | |
uses: preactjs/compressed-size-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
pattern: "dist/*.js" | |
compression: "none" |