Skip to content

chore: upgrade Univer SDK cohort to 1.0.0-insiders.20260822-0c0c0dd #4

chore: upgrade Univer SDK cohort to 1.0.0-insiders.20260822-0c0c0dd

chore: upgrade Univer SDK cohort to 1.0.0-insiders.20260822-0c0c0dd #4

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup pnpm
uses: pnpm/action-setup@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Test
run: pnpm test