Skip to content

Commit 13588e6

Browse files
authored
chore: add setup workflow composite action (#410)
1 parent f914168 commit 13588e6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Setup Node Environment
2+
description: Setup Node.js and install dependencies
3+
4+
runs:
5+
using: composite
6+
steps:
7+
- uses: actions/checkout@v4
8+
with:
9+
fetch-depth: 0
10+
11+
- name: Setup Node.js
12+
uses: actions/setup-node@v4
13+
with:
14+
node-version: 22
15+
16+
- name: Install dependencies
17+
shell: bash
18+
run: |
19+
corepack enable
20+
corepack prepare --activate
21+
pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)