Skip to content

Commit

Permalink
test: try to repro #76
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-fields committed Aug 4, 2022
1 parent 9c48a91 commit e4a719f
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci_cd.yml
Expand Up @@ -50,6 +50,8 @@ jobs:
name: Run Integration Issue#76 Tests
if: startsWith(github.ref, 'refs/heads')
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -61,20 +63,28 @@ jobs:
run: npm ci
- name: 1MiB
id: sigpipe-a
if: always()
continue-on-error: true
uses: ./
with:
max_attempts: 1
timeout_minutes: 5
command: 'make bytes-1024'
- name: 1⅛MiB
if: always()
id: sigpipe-b
continue-on-error: true
uses: ./
with:
max_attempts: 1
timeout_minutes: 5
command: 'make bytes-1152'
- uses: nick-invision/assert-action@v1
with:
expected: failure
actual: ${{ steps.sigpipe-a.outcome }}
- uses: nick-invision/assert-action@v1
with:
expected: failure
actual: ${{ steps.sigpipe-b.outcome }}

ci_integration:
name: Run Integration Tests
Expand Down

0 comments on commit e4a719f

Please sign in to comment.