Skip to content

Commit 780ebfb

Browse files
committed
ci: rename install action to node-install
1 parent 863b9fc commit 780ebfb

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/actions/install/action.yml renamed to .github/actions/node-install/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: '🛠️ Install'
2-
description: 'Setup Node, pnpm & install dependencies'
1+
name: '🛠️ Node.js Install'
2+
description: 'Setup Node.js, pnpm & install dependencies'
33

44
inputs:
55
token:

.github/workflows/deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919

2020
- name: Install
21-
uses: ./.github/actions/install
21+
uses: ./.github/actions/node-install
2222
with:
2323
token: ${{ secrets.GITHUB_TOKEN }}
2424

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
token: ${{ steps.auth.outputs.token }}
4040

4141
- name: Install
42-
uses: ./.github/actions/install
42+
uses: ./.github/actions/node-install
4343
with:
4444
token: ${{ secrets.GITHUB_TOKEN }}
4545

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
token: ${{ steps.auth.outputs.token }}
5151

5252
- name: Install
53-
uses: ./.github/actions/install
53+
uses: ./.github/actions/node-install
5454
with:
5555
token: ${{ secrets.GITHUB_TOKEN }}
5656

.github/workflows/verify-pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Install
23-
uses: ./.github/actions/install
23+
uses: ./.github/actions/node-install
2424
with:
2525
token: ${{ secrets.GITHUB_TOKEN }}
2626

@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@v4
3434

3535
- name: Install
36-
uses: ./.github/actions/install
36+
uses: ./.github/actions/node-install
3737
with:
3838
token: ${{ secrets.GITHUB_TOKEN }}
3939

@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/checkout@v4
4747

4848
- name: Install
49-
uses: ./.github/actions/install
49+
uses: ./.github/actions/node-install
5050
with:
5151
token: ${{ secrets.GITHUB_TOKEN }}
5252

@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@v4
6060

6161
- name: Install
62-
uses: ./.github/actions/install
62+
uses: ./.github/actions/node-install
6363
with:
6464
token: ${{ secrets.GITHUB_TOKEN }}
6565

0 commit comments

Comments
 (0)