Skip to content

Commit a2eff14

Browse files
itmustbemagicgithub-actions[bot]
authored andcommitted
feat: update action scripts
1 parent dcebd34 commit a2eff14

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: node-manager
2+
description: 'Setup node and install yarn'
3+
inputs:
4+
node-version:
5+
description: 'Node version'
6+
required: true
7+
default: 18
8+
runs:
9+
using: "composite"
10+
steps:
11+
- uses: actions/setup-node@v3
12+
with:
13+
node-version: ${{ inputs.node-version }}
14+
15+
- name: Install yarn
16+
shell: bash
17+
run: npm install -g yarn

0 commit comments

Comments
 (0)