feat(balances): rename "Account" to "Balance" and rework Default Balance screen #8189
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
| #! Originally synced from github.com/GaloyMoney/concourse-shared (now archived). | |
| #! blink-mobile is not a sync target, so this file is maintained directly here. | |
| name: Check Code | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check-code: | |
| name: Check Code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: "yarn" | |
| - run: yarn install --frozen-lockfile | |
| - name: Run check code | |
| run: make check-code |