Skip to content

fix: add custom rpc endpoints on mainnet (#99) #49

fix: add custom rpc endpoints on mainnet (#99)

fix: add custom rpc endpoints on mainnet (#99) #49

Workflow file for this run

name: Lint and Prettier
on:
push:
branches:
- "**"
paths:
- "app/**"
pull_request:
branches:
- "**"
paths:
- "app/**"
jobs:
run-lint-prettier:
name: Run lint and prettier
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20.10.0
# ESLint and Prettier must be in `package.json`
- name: Install pnpm
run: npm install -g pnpm
- name: Install Node.js dependencies
env:
CYPRESS_INSTALL_BINARY: 0 # This disables Cypress binary installation during pnpm install
run: pnpm i
- name: Running linter
run: pnpm lint
- name: Running Prettier check
run: pnpm format-check