Skip to content

Commit bc9dae5

Browse files
authored
Merge branch 'main' into tn/generator-edgeFunc
2 parents 63e791d + 2d705f4 commit bc9dae5

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/e2e-next.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
name: Next.js e2e test suite
22

33
on:
4-
pull_request:
5-
types: [opened, synchronize]
6-
push:
7-
branches: [main]
4+
# pull_request:
5+
# types: [opened, synchronize]
6+
# push:
7+
# branches: [main]
8+
schedule:
9+
- cron: '0 0 * * *'
810

911
jobs:
1012
setup:

test/e2e/next-test-lib/next-modes/next-deploy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ export class NextDeployInstance extends NextInstance {
6666

6767
console.log(`Deploying project at ${this.testDir}`)
6868

69-
const deployRes = await execa('ntl', ['deploy', '--build', '--json', '--message', testName], {
69+
const deployTitle = process.env.GITHUB_SHA ? `${testName} - ${process.env.GITHUB_SHA}` : testName
70+
const deployRes = await execa('ntl', ['deploy', '--build', '--json', '--message', deployTitle], {
7071
cwd: this.testDir,
7172
reject: false,
7273
env: {

0 commit comments

Comments
 (0)