Skip to content

Add base58 to hex utility function #2278

Add base58 to hex utility function

Add base58 to hex utility function #2278

Workflow file for this run

name: PR checks
on:
push:
branches:
- master
pull_request:
jobs:
Lint-build-test:
name: Lint, build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint:check
- name: Typecheck
run: yarn typecheck
- name: Test
run: yarn test
- name: Build
run: yarn build