Skip to content

Commit

Permalink
DEBUG: Try Node.js 20 like Creditcoin3
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Jan 12, 2024
1 parent 30ce97b commit 4353ec4
Show file tree
Hide file tree
Showing 12 changed files with 2,584 additions and 2 deletions.
276 changes: 276 additions & 0 deletions .github/workflows/bench.yml

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions .github/workflows/check-runtime-changes.yml
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"
Loading

0 comments on commit 4353ec4

Please sign in to comment.