-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-mts-and-cts-to-moduleFileExtensions
- Loading branch information
Showing
796 changed files
with
8,482 additions
and
83,973 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Documentation 📖 | ||
description: Submit a request to add or update documentation | ||
title: '[Docs]: ' | ||
labels: ['Documentation :book:'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
### Thank you for helping us improve our documentation! | ||
Please be sure you are looking at [the latest version of the documentation](https://jestjs.io/docs) before opening an issue here. | ||
- type: textarea | ||
id: links | ||
attributes: | ||
label: Page(s) | ||
description: | | ||
Links to one or more documentation pages that should be modified. | ||
If you are reporting an issue with a specific section of a page, try to link directly to the nearest anchor. | ||
If you are suggesting that a new page be created, link to the parent of the proposed page. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: | | ||
Describe the change you are requesting. | ||
If the issue pertains to a single function or matcher, be sure to specify the entire call signature. | ||
validations: | ||
required: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:base"], | ||
"lockFileMaintenance": {"enabled": true, "automerge": true}, | ||
"lockFileMaintenance": {"enabled": true, "automerge": false}, | ||
"rangeStrategy": "replace", | ||
"postUpdateOptions": ["yarnDedupeHighest"], | ||
"packageRules": [ | ||
{ | ||
"matchPackageNames": ["@tsd/typescript", "typescript"], | ||
"groupName": "typescript" | ||
}, | ||
{ | ||
"matchPackageNames": ["jest-runner-tsd", "tsd-lite"], | ||
"groupName": "tsd" | ||
} | ||
] | ||
} |
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,52 @@ | ||
name: Node Nightly CI | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 12 * * *' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read # to fetch code (actions/checkout) | ||
|
||
jobs: | ||
prepare-yarn-cache-ubuntu: | ||
uses: ./.github/workflows/prepare-cache.yml | ||
with: | ||
os: ubuntu-latest | ||
prepare-yarn-cache-macos: | ||
uses: ./.github/workflows/prepare-cache.yml | ||
with: | ||
os: macos-latest | ||
prepare-yarn-cache-windows: | ||
uses: ./.github/workflows/prepare-cache.yml | ||
with: | ||
os: windows-latest | ||
|
||
test-ubuntu: | ||
uses: ./.github/workflows/test-nightly.yml | ||
needs: prepare-yarn-cache-ubuntu | ||
with: | ||
os: ubuntu-latest | ||
test-macos: | ||
uses: ./.github/workflows/test-nightly.yml | ||
needs: prepare-yarn-cache-macos | ||
with: | ||
os: macos-latest | ||
test-windows: | ||
uses: ./.github/workflows/test-nightly.yml | ||
needs: prepare-yarn-cache-windows | ||
with: | ||
os: windows-latest | ||
notify: | ||
name: Notify failed build | ||
needs: [test-ubuntu, test-macos, test-windows] | ||
if: failure() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: jayqi/failed-build-issue-action@v1 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
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
Oops, something went wrong.