-
Notifications
You must be signed in to change notification settings - Fork 159
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 elmattic/eth-trace-block
- Loading branch information
Showing
9 changed files
with
81 additions
and
72 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 was deleted.
Oops, something went wrong.
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,51 @@ | ||
name: Link Checker | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Run daily at 9am | ||
- cron: "00 9 * * *" | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "**.md" | ||
- "**.mdx" | ||
- "**.html" | ||
- ".github/workflows/link-check.yml" | ||
merge_group: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "**.md" | ||
- "**.mdx" | ||
- "**.html" | ||
- ".github/workflows/link-check.yml" | ||
|
||
jobs: | ||
link-check: | ||
name: Link Check | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
issues: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Link Checker | ||
id: lychee | ||
uses: lycheeverse/lychee-action@v2 | ||
with: | ||
args: --config ./.config/lychee.toml './**/*.md' './**/*.mdx' './**/*.html' | ||
|
||
- name: Create Issue From File | ||
if: env.lychee_exit_code != 0 && github.event_name == 'schedule' | ||
uses: peter-evans/create-issue-from-file@v5 | ||
with: | ||
title: Link Checker Report | ||
content-filepath: ./lychee-report.md | ||
|
||
- name: Fail job on error | ||
if: env.lychee_exit_code != 0 && github.event_name != 'schedule' | ||
run: exit 1 |
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 was deleted.
Oops, something went wrong.
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,9 +1,10 @@ | ||
{ | ||
// This file is not used in compilation. It is here just for a nice editor experience. | ||
"extends": "@tsconfig/docusaurus/tsconfig.json", | ||
"extends": "@docusaurus/tsconfig", | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"skipLibCheck": true, | ||
"module": "Node16" | ||
} | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,23 +1,13 @@ | ||
# This file is generated by running "yarn install" inside your project. | ||
# Manual changes might be lost - proceed with caution! | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
__metadata: | ||
version: 8 | ||
cacheKey: 10c0 | ||
|
||
"prettier@npm:^3.3.3": | ||
version: 3.3.3 | ||
resolution: "prettier@npm:3.3.3" | ||
bin: | ||
prettier: bin/prettier.cjs | ||
checksum: 10c0/b85828b08e7505716324e4245549b9205c0cacb25342a030ba8885aba2039a115dbcf75a0b7ca3b37bc9d101ee61fab8113fc69ca3359f2a226f1ecc07ad2e26 | ||
languageName: node | ||
linkType: hard | ||
"@docusaurus/tsconfig@^3.6.3": | ||
version "3.6.3" | ||
resolved "https://registry.yarnpkg.com/@docusaurus/tsconfig/-/tsconfig-3.6.3.tgz#8af20c45f0a67e193debedcb341c0a1e78b1dd63" | ||
integrity sha512-1pT/rTrRpMV15E4tJH95W5PrjboMn5JkKF+Ys8cTjMegetiXjs0gPFOSDA5hdTlberKQLDO50xPjMJHondLuzA== | ||
|
||
"root@workspace:.": | ||
version: 0.0.0-use.local | ||
resolution: "root@workspace:." | ||
dependencies: | ||
prettier: "npm:^3.3.3" | ||
languageName: unknown | ||
linkType: soft | ||
prettier@^3.3.3: | ||
version "3.4.2" | ||
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.2.tgz#a5ce1fb522a588bf2b78ca44c6e6fe5aa5a2b13f" | ||
integrity sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ== |