Skip to content

Update cli-rs.md

Update cli-rs.md #2015

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
branches:
- master
push:
branches:
- master
jobs:
build-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '19'
- name: Build docusaurus crowdin docs
run: |
cd website && yarn
yarn crowdin:build
yarn build
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
NODE_OPTIONS: --max-old-space-size=8192