-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEBUG: Try Node.js 20 like Creditcoin3
- Loading branch information
Showing
12 changed files
with
2,584 additions
and
2 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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,31 +1,62 @@ | ||
/node-version: 18/node-version: 20/ | ||
--- | ||
/node-version: 18/node-version: 20/ | ||
name: Check runtime changes | ||
/node-version: 18/node-version: 20/ | ||
|
||
/node-version: 18/node-version: 20/ | ||
on: | ||
/node-version: 18/node-version: 20/ | ||
pull_request: | ||
/node-version: 18/node-version: 20/ | ||
branches: [dev, testnet, main] | ||
/node-version: 18/node-version: 20/ | ||
|
||
/node-version: 18/node-version: 20/ | ||
permissions: read-all | ||
/node-version: 18/node-version: 20/ | ||
|
||
/node-version: 18/node-version: 20/ | ||
jobs: | ||
/node-version: 18/node-version: 20/ | ||
check-version: | ||
/node-version: 18/node-version: 20/ | ||
runs-on: ubuntu-latest | ||
/node-version: 18/node-version: 20/ | ||
steps: | ||
/node-version: 18/node-version: 20/ | ||
- uses: actions/checkout@v4 | ||
/node-version: 18/node-version: 20/ | ||
with: | ||
/node-version: 18/node-version: 20/ | ||
fetch-depth: 0 | ||
/node-version: 18/node-version: 20/ | ||
|
||
/node-version: 18/node-version: 20/ | ||
- name: Check if version.rs was modified | ||
/node-version: 18/node-version: 20/ | ||
run: | | ||
/node-version: 18/node-version: 20/ | ||
./scripts/check-version.sh "remotes/origin/$GITHUB_BASE_REF" "$GITHUB_SHA" | ||
/node-version: 18/node-version: 20/ | ||
# dangerous conditions that will brick the blockchain | ||
/node-version: 18/node-version: 20/ | ||
danger-will-brick-the-blockchain: | ||
/node-version: 18/node-version: 20/ | ||
runs-on: ubuntu-latest | ||
/node-version: 18/node-version: 20/ | ||
steps: | ||
/node-version: 18/node-version: 20/ | ||
- uses: actions/checkout@v4 | ||
/node-version: 18/node-version: 20/ | ||
with: | ||
/node-version: 18/node-version: 20/ | ||
fetch-depth: 0 | ||
/node-version: 18/node-version: 20/ | ||
|
||
/node-version: 18/node-version: 20/ | ||
- name: Check for changes in Proof-of-Stake EPOCH duration | ||
/node-version: 18/node-version: 20/ | ||
run: | | ||
/node-version: 18/node-version: 20/ | ||
./scripts/check-for-changes-in-epoch-duration.sh "remotes/origin/$GITHUB_BASE_REF" "$GITHUB_SHA" |
Oops, something went wrong.