Skip to content

Commit 7efce3a

Browse files
authored
ci(.github/workflows): replace 'pnpm i' with 'pnpm install' (#1595)
1 parent 2ac5a6b commit 7efce3a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/deploy-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache: 'pnpm'
2323

2424
- name: Install Dependencies
25-
run: pnpm i
25+
run: pnpm install
2626

2727
- name: Build packages
2828
run: pnpm run build

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: 'pnpm'
2929

3030
- name: Install Dependencies
31-
run: pnpm i
31+
run: pnpm install
3232

3333
- name: Create release PR or publish to npm
3434
uses: changesets/action@v1

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
cache: 'pnpm'
2727

2828
- name: Install Dependencies
29-
run: pnpm i
29+
run: pnpm install
3030

3131
- name: Publish
3232
uses: seek-oss/changesets-snapshot@v0

.github/workflows/validate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: 'pnpm'
2929

3030
- name: Install Dependencies
31-
run: pnpm i
31+
run: pnpm install
3232

3333
- name: Build
3434
run: pnpm build && node ./site/makeDocsManifest
@@ -63,7 +63,7 @@ jobs:
6363
cache: 'pnpm'
6464

6565
- name: Install Dependencies
66-
run: pnpm i
66+
run: pnpm install
6767

6868
- name: Build
6969
run: pnpm build
@@ -89,7 +89,7 @@ jobs:
8989
cache: 'pnpm'
9090

9191
- name: Install Dependencies
92-
run: pnpm i
92+
run: pnpm install
9393

9494
- name: Install Browsers
9595
run: pnpm playwright install chromium

0 commit comments

Comments
 (0)