-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(workflow): move integration test to daily (#3842)
This PR attempts to move next.js integration workflow to the daily cron job, and then post it to the slack since we don't write comment to the PR.
- Loading branch information
Showing
3 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# A workflow to run next.js integration test with turbopack for each day. | ||
# This runs against main branch with latest Next.js release. | ||
name: Daily Next.js integration test with turbopack | ||
|
||
on: | ||
schedule: | ||
- cron: "0 8 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# Trigger actual next.js integration tests. | ||
next_js_integration: | ||
name: Execute Next.js integration workflow | ||
permissions: | ||
pull-requests: write | ||
uses: ./.github/workflows/nextjs-integration-test.yml | ||
with: | ||
force_post_to_slack: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters