Skip to content

feat: add integration guide for OpenClaw with OpenIM #483

feat: add integration guide for OpenClaw with OpenIM

feat: add integration guide for OpenClaw with OpenIM #483

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build documentation
run: pnpm build
- name: Lint check
run: pnpm lint
continue-on-error: true
- name: Type checking
run: pnpm typecheck
continue-on-error: true