d0f6ef80fc
### Change Type - [x] `internal` — Any other changes that don't affect the published package
21 lines
530 B
YAML
21 lines
530 B
YAML
name: Setup tldraw/tldraw
|
|
description: Set up node & yarn
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
# see https://github.com/actions/setup-node/issues/899 for one of the reasons why this
|
|
# needs to be done before action/setup-node
|
|
- name: Enable corepack
|
|
run: corepack enable
|
|
shell: bash
|
|
|
|
- name: Setup Node.js Environment
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20.11.0
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --immutable
|
|
shell: bash
|