Skip to content

Commit ce8349e

Browse files
committed
chore(ci): add install action
1 parent 7ee7c94 commit ce8349e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/actions/install/action.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: '🔒 setup'
2+
description: 'Setup Node, pnpm & install dependencies'
3+
4+
runs:
5+
using: 'composite'
6+
steps:
7+
- name: Install pnpm
8+
uses: pnpm/action-setup@v4
9+
with:
10+
run_install: false
11+
12+
- name: Install Node.js
13+
uses: actions/setup-node@v4
14+
with:
15+
node-version-file: package.json
16+
cache: pnpm
17+
18+
- name: Install dependencies
19+
shell: bash
20+
run: pnpm install

0 commit comments

Comments
 (0)