Skip to content

add rpc client #1

add rpc client #1 #1

Workflow file for this run

name: Build
on:
pull_request:
workflow_dispatch:
push:
branches:
- master
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: |
export SKIP_INSTALL_SIMPLE_GIT_HOOKS=1
npm ci
- name: Lint
run: npm run lint
- name: Format
run: npm run format
- name: Test
run: npm test:ci
- name: Build
run: |
npm run build
ls -lh dist