Display usdc/t for main account #1245
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: Lint UI | |
on: | |
pull_request: | |
paths: ['packages/ui/**/*', '.github/workflows/lint-ui.yaml'] | |
jobs: | |
extract: | |
name: eslint | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./packages/ui/ | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set user | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email 'actions@github.com' | |
# use node module caching | |
- uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: install packages | |
run: corepack enable && yarn install --immutable | |
- name: lint | |
run: yarn ui:lint |