Skip to content

Commit

Permalink
ci: Fix install step
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Jan 5, 2025
1 parent d59ea15 commit 988449a
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 18 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@ jobs:
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 8

- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
cache: "pnpm"

- name: Install Dependencies
run: pnpm install --frozen-lockfile
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/publish-starter-kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ jobs:
uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
cache: "pnpm"

- name: Install Dependencies
run: pnpm install --frozen-lockfile
Expand All @@ -44,14 +42,12 @@ jobs:
fetch-depth: 0

- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
cache: "pnpm"

- name: Install Dependencies
run: pnpm install --frozen-lockfile
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/publish-v1-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
ref: v1

- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install Vercel CLI
run: npm install --global vercel@latest
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/publish-v2-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
ref: v2

- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install Vercel CLI
run: npm install --global vercel@latest
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/publish-v3-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
ref: v3

- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install Vercel CLI
run: npm install --global vercel@latest
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ jobs:
uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
with:
version: 8

- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
cache: "pnpm"

- name: Install Dependencies
run: pnpm install --frozen-lockfile
Expand Down

0 comments on commit 988449a

Please sign in to comment.