tldraw/.github/actions/setup/action.yml
Dan Groshev d0f6ef80fc
Update the project to Node 20 (#2691)
### Change Type
- [x] `internal` — Any other changes that don't affect the published
package
2024-01-31 16:53:40 +00:00

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