Skip to content

Commit 3d4f75b

Browse files
committed
remove manual install step
1 parent 0a0b895 commit 3d4f75b

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

.github/workflows/release.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,15 @@ jobs:
1818
fetch-depth: 0
1919
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
2020

21-
- uses: pnpm/action-setup@v2
22-
2321
- name: Setup Node.js
2422
uses: actions/setup-node@main
2523
with:
2624
node-version-file: '.nvmrc'
2725
cache: 'pnpm'
2826

29-
- name: Install Dependencies
30-
run: pnpm install
27+
- uses: pnpm/action-setup@v2
28+
with:
29+
run_install: true
3130

3231
- name: Create release PR or publish to npm
3332
uses: changesets/action@c2918239208f2162b9d27a87f491375c51592434

.github/workflows/snapshot.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,15 @@ jobs:
1515
fetch-depth: 0
1616
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
1717

18-
- uses: pnpm/action-setup@v2
19-
2018
- name: Setup Node.js
2119
uses: actions/setup-node@main
2220
with:
2321
node-version-file: '.nvmrc'
2422
cache: 'pnpm'
2523

26-
- name: Install Dependencies
27-
run: pnpm install
24+
- uses: pnpm/action-setup@v2
25+
with:
26+
run_install: true
2827

2928
- name: Build
3029
run: pnpm build

.github/workflows/validate.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,15 @@ jobs:
1515
fetch-depth: 0
1616
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }}
1717

18-
- uses: pnpm/action-setup@v2
19-
2018
- name: Setup Node.js
2119
uses: actions/setup-node@main
2220
with:
2321
node-version-file: '.nvmrc'
2422
cache: 'pnpm'
2523

26-
- name: Install Dependencies
27-
run: pnpm install
24+
- uses: pnpm/action-setup@v2
25+
with:
26+
run_install: true
2827

2928
- name: Build
3029
run: |

0 commit comments

Comments
 (0)