Skip to content

ENG-1084 - initial implementation of tldraw Clipboard (Roam) #1371

ENG-1084 - initial implementation of tldraw Clipboard (Roam)

ENG-1084 - initial implementation of tldraw Clipboard (Roam) #1371

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10.15.1
run_install: false
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Check TypeScript Types
run: npx turbo check-types
# TODO: Add future linting, testing, style checks, etc.
# name: Lint
# run: pnpm run lint