mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-21 11:26:58 +00:00
14 lines
233 B
YAML
14 lines
233 B
YAML
name: Setup Node
|
|
description: Setup Node
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/setup-node@v5
|
|
with:
|
|
node-version: lts/*
|
|
cache: yarn
|
|
|
|
- run: yarn install --frozen-lockfile
|
|
shell: bash
|