mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-25 01:25:04 +08:00
14 lines
234 B
YAML
14 lines
234 B
YAML
name: Setup Node
|
|
description: Setup Node
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "18"
|
|
cache: "yarn"
|
|
|
|
- run: yarn install --frozen-lockfile
|
|
shell: bash
|