mirror of
https://github.com/actions/github-script.git
synced 2026-02-07 19:47:26 +00:00
12 lines
248 B
YAML
12 lines
248 B
YAML
name: 'Install dependencies'
|
|
description: 'Set up node and install dependencies'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.x'
|
|
cache: npm
|
|
|
|
- run: npm ci
|
|
shell: bash
|