Skip to content

Commit

Permalink
Merge branch 'main' into run-a-node-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jlwllmr authored Aug 28, 2024
2 parents 598e66a + fbc36ae commit 6f5aaa7
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 48 deletions.
35 changes: 20 additions & 15 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,35 @@
- cron: "0 0 * * *"
workflow_dispatch: {}

concurrency:
group: nightly-${{ github.ref }}
cancel-in-progress: true

jobs:
linkCheck:
name: Run link check
linkCheckMdx:
name: Run link check on .mdx files
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: LinkCheck mdx files
uses: ConsenSys/docs-gha/linkcheck@main
with:
FILE_EXTENSION: mdx
MODIFIED_FILES_ONLY: no
linkCheckMd:
needs: linkCheckMdx
name: Run link check on .md files
if: always()
runs-on: ubuntu-latest
strategy:
matrix:
file-extensions: [".md", ".mdx"]
check-modified-files-only: [no]
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: LinkCheck
- name: LinkCheck md files
uses: ConsenSys/docs-gha/linkcheck@main
with:
FILE_EXTENSION: ${{ matrix.file-extensions }}
MODIFIED_FILES_ONLY: ${{ matrix.check-modified-files-only }}

FILE_EXTENSION: md
MODIFIED_FILES_ONLY: no
slackNotification:
needs: linkCheck
needs: [linkCheckMdx, linkCheckMd]
if: ${{ failure() }}
runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 3 additions & 0 deletions docs/developers/community/hackathons.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -140,5 +140,8 @@ Join their Discord for ideas and to connect with their community!

Look forward to finding us IRL at:
- [ETHTokyo](https://www.ethtokyo.com/)
- [Builder Nights Tokyo](https://lu.ma/kjbepjmf)
- [Builder Nights Seoul](https://lu.ma/dhrp1j3u)
- [ETHGlobal Singapore](https://ethglobal.com/events/singapore2024)
- [Builder Nights Singapore](https://lu.ma/5c42tvrs)
- [ETHGlobal Bangkok](https://ethglobal.com/events/bangkok)
Original file line number Diff line number Diff line change
Expand Up @@ -318,5 +318,5 @@ the following resources:
- [Documentation](https://docs.cookbook.dev/)
- [Blog](https://medium.com/@cookbookdev)
- [X (Twitter)](https://twitter.com/cookbook_dev)
- [X (Twitter)](https://x.com/cookbook_dev)
- [Community](https://discord.gg/cookbook)
2 changes: 1 addition & 1 deletion docs/developers/tooling/contracts-templates/cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ For more information on using Cookbook to find, learn about or build with smart

- [Documentation](https://docs.cookbook.dev)
- [Blog](https://medium.com/@cookbookdev)
- [Twitter](https://twitter.com/cookbook_dev)
- [X](https://x.com/cookbook_dev)
- [Community](https://discord.gg/cookbook)
43 changes: 12 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6f5aaa7

Please sign in to comment.