Skip to content

TS SDK check

TS SDK check #233

Workflow file for this run

name: TS SDK check
on:
workflow_dispatch: {}
push:
branches: [master]
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: |
cwd: ./ts
args: [--frozen-lockfile]
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Build
working-directory: ./ts
run: pnpm run build:all
- name: Lint code
working-directory: ./ts
run: pnpm run lint
- name: Typecheck code
working-directory: ./ts
run: pnpm run typecheck
- name: 📦 Upload failed snapshot test artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: ts_source
path: ./ts/@live-compositor/browser-render
retention-days: 2