Skip to content

Commit 49d20ba

Browse files
authored
Merge branch '001-multi-tenant-ecommerce' into copilot/suggest-code-improvements
2 parents aac813b + 4a04969 commit 49d20ba

2 files changed

Lines changed: 28 additions & 9 deletions

File tree

.github/workflows/copilot-setup-steps.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
copilot-setup-steps:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 30
15+
timeout-minutes: 60
1616
permissions:
1717
contents: read
1818

@@ -115,3 +115,19 @@ jobs:
115115
key: ${{ runner.os }}-next-${{ hashFiles('package-lock.json') }}
116116
restore-keys: |
117117
${{ runner.os }}-next-
118+
119+
# Prepare and (optionally) upload Copilot runtime logs to avoid warnings
120+
- name: Prepare Copilot runtime logs
121+
run: |
122+
mkdir -p /home/runner/work/_temp/runtime-logs
123+
: > /home/runner/work/_temp/runtime-logs/blocked.jsonl
124+
: > /home/runner/work/_temp/runtime-logs/blocked.md
125+
126+
- name: Upload Copilot runtime logs (if present)
127+
uses: actions/upload-artifact@v4
128+
with:
129+
name: copilot-runtime-logs
130+
path: |
131+
/home/runner/work/_temp/runtime-logs/blocked.jsonl
132+
/home/runner/work/_temp/runtime-logs/blocked.md
133+
if-no-files-found: ignore

package.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
"isomorphic-dompurify": "^2.30.1",
7373
"js-yaml": "^4.1.0",
7474
"lucide-react": "^0.460.0",
75-
"next": "^16.0.0",
76-
"next-auth": "^4.24.11",
75+
"next": "^16.0.1",
76+
"next-auth": "^4.24.13",
7777
"next-devtools-mcp": "^0.2.1",
7878
"otpauth": "^9.4.1",
7979
"qrcode": "^1.5.4",
@@ -87,7 +87,7 @@
8787
"speakeasy": "^2.0.0",
8888
"stripe": "^17.7.0",
8989
"swagger-jsdoc": "^6.2.8",
90-
"swagger-ui-react": "^5.19.0",
90+
"swagger-ui-react": "^5.30.1",
9191
"tailwind-merge": "^2.5.0",
9292
"zod": "^3.23.0"
9393
},
@@ -130,11 +130,14 @@
130130
},
131131
"overrides": {
132132
"next-auth": {
133-
"next": "16.0.0"
134-
}
133+
"next": "^16.0.1"
134+
},
135+
"prismjs": "^1.30.0",
136+
"refractor": "^4.7.0",
137+
"react-syntax-highlighter": "^15.6.0"
135138
},
136139
"engines": {
137-
"node": ">=22.0.0",
138-
"npm": ">=11.0.0"
140+
"node": ">=20.0.0",
141+
"npm": ">=10.0.0"
139142
}
140-
}
143+
}

0 commit comments

Comments
 (0)