Skip to content

Fixes coin symbols for emojicoins, and fixes showing all verified coins in the balances table #1542

Fixes coin symbols for emojicoins, and fixes showing all verified coins in the balances table

Fixes coin symbols for emojicoins, and fixes showing all verified coins in the balances table #1542

Workflow file for this run

name: Code checks
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
id: pnpm-install
uses: pnpm/action-setup@v4
- name: Install Node.js
id: node-install
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm lint
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
id: pnpm-install
uses: pnpm/action-setup@v4
- name: Install Node.js
id: node-install
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run test
run: pnpm test || true