Skip to content

Scaffold top portion of balances page #104

Scaffold top portion of balances page

Scaffold top portion of balances page #104

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 20
- name: Install packages
run: npm ci --include=optional
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck