Tldraw/.github/actions/setup/action.yml

20 wiersze
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