mirror of
https://github.com/actions/github-script.git
synced 2026-03-29 17:35:02 +00:00
Add install deps action to reuse between workflows
This commit is contained in:
11
.github/actions/install-dependencies/action.yml
vendored
Normal file
11
.github/actions/install-dependencies/action.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
name: 'Install dependencies'
|
||||
description: 'Set up node and install dependencies'
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '20.x'
|
||||
cache: npm
|
||||
|
||||
- run: npm ci
|
||||
Reference in New Issue
Block a user