d7002057d7
This PR moves the tldraw.com app into the public repo. ### Change Type - [x] `internal` — Any other changes that don't affect the published package[^2] --------- Co-authored-by: Dan Groshev <git@dgroshev.com> Co-authored-by: alex <alex@dytry.ch>
19 lines
391 B
YAML
19 lines
391 B
YAML
name: Setup tldraw/tldraw
|
|
description: Set up node & yarn
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Enable corepack
|
|
run: corepack enable
|
|
shell: bash
|
|
|
|
- name: Setup Node.js Environment
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.18.2
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --immutable
|
|
shell: bash
|