Skip to content

checking for failers #8

checking for failers

checking for failers #8

Workflow file for this run

name: Account Abstraction workflow
on:
workflow_dispatch:
pull_request:
branches:
- vechain
push:
branches:
- fix/18-hh-tests
jobs:
call-workflow-hardhat-tests:
uses: ./.github/workflows/test-contracts.yml
with:
shard-matrix: "{ \"shard\": [1,2,3] }"
secrets: inherit
check-failures:
runs-on: ubuntu-latest
needs: call-workflow-hardhat-tests
steps:
- name: Check for shard failures
run: |
if [ "${{ needs.call-workflow-hardhat-tests.result }}" != "success" ]; then
echo "One or more shard jobs failed."
exit 1
fi