nonebot2/.github/actions/setup-node/action.yml

14 lines
234 B
YAML
Raw Normal View History

name: Setup Node
description: Setup Node
runs:
using: "composite"
steps:
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "yarn"
- run: yarn install --frozen-lockfile
shell: bash