Skip to content

Commit 7c331b3

Browse files
committed
Fix GitHub Actions CI by removing private repository clone
- Removed clone of non-existent nextjs-template repository - Replaced with scaffold-3d dependency installation - This fixes authentication failures in CI workflow
1 parent 91bcdd7 commit 7c331b3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ jobs:
6565
run: npm run test
6666
- name: Setup pnpm
6767
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
68-
- name: Clone nextjs-template
69-
run: git clone --depth 1 https://github.com/SFARPak/nextjs-template.git nextjs-template
7068
- name: Get pnpm store directory
7169
id: pnpm-cache
7270
shell: bash
@@ -82,8 +80,8 @@ jobs:
8280
# Not strictly needed but makes the e2e tests faster (and less flaky)
8381
- name: Install scaffold dependencies
8482
run: cd scaffold && pnpm install
85-
- name: Install nextjs-template dependencies
86-
run: cd nextjs-template && pnpm install
83+
- name: Install scaffold-3d dependencies
84+
run: cd scaffold-3d && pnpm install
8785
- name: Install Chromium browser for Playwright
8886
run: npx playwright install chromium --with-deps
8987
- name: Build

0 commit comments

Comments
 (0)