Skip to content

Commit e423f25

Browse files
authoredMar 7, 2024··
Merge pull request #4967 from NomicFoundation/ci-fixes
Ci fixes
2 parents ef367a4 + 7743102 commit e423f25

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎.github/workflows/edr-npm-release.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ jobs:
360360
check_commit:
361361
name: Check commit
362362
runs-on: ubuntu-latest
363+
if: github.event_name != 'pull_request' || github.event.pull_request.author_association == 'OWNER' || github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR'
363364
steps:
364365
- uses: actions/checkout@v4
365366
with:
@@ -391,7 +392,7 @@ jobs:
391392
- test-linux-aarch64-gnu-binding
392393
- test-linux-aarch64-musl-binding
393394
# Only run workflow if the PR is merged to main and the commit message is a release commit.
394-
if: ${{ needs.check_commit.outputs.match == 'true' && github.ref == 'refs/heads/main' }}
395+
if: ${{ needs.check_commit.outputs.match == 'true' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/edr/release') }}
395396
defaults:
396397
run:
397398
working-directory: ./crates/edr_napi

‎.github/workflows/pre-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ jobs:
7676
NODE_OPTIONS: "--max-old-space-size=4096"
7777
run: |
7878
pnpm build
79-
pnpm test:forking
79+
pnpm test:except-tracing

‎.github/workflows/test-recent-mainnet-block.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Run a recent full block in the Hardhat Network
22

33
on:
44
schedule:
5-
- cron: "0 0 * * *"
5+
- cron: "0 */8 * * *"
66
workflow_dispatch:
77

88
defaults:

0 commit comments

Comments
 (0)
Please sign in to comment.