Skip to content

fix(dcellar-web-ui): unified encoding method same as go-sdk #1143

fix(dcellar-web-ui): unified encoding method same as go-sdk

fix(dcellar-web-ui): unified encoding method same as go-sdk #1143

Workflow file for this run

name: Lint
on:
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Cache Rush
uses: actions/cache@v3
with:
path: |
common/temp/install-run
common/temp/build-cache
~/.rush
key: ${{ runner.os }}-${{ hashFiles('rush.json') }}
- name: Cache pnpm
uses: actions/cache@v3
with:
path: |
common/temp/pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install dependencies
run: node common/scripts/install-run-rush.js install
- name: Lint
run: node common/scripts/install-run-rush.js lint