nonebot2/.github/actions/setup-node/action.yml
dependabot[bot] acf313c420
⬆️ Bump the actions group (#2430)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-24 13:47:28 +08:00

14 lines
234 B
YAML

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