TS SDK check #233
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |