Skip to content

Commit

Permalink
Add specs-report on CI (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
leordev authored Aug 21, 2024
1 parent 0dc35e0 commit 6c5f353
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/integrity-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@ env:
PNPM_CACHE_FOLDER: .pnpm-store

jobs:

test-with-node:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
with:
submodules: 'true'
submodules: "true"

# https://cashapp.github.io/hermit/usage/ci/
- name: Init Hermit
Expand All @@ -43,7 +42,18 @@ jobs:

- name: Run tests for all packages
run: pnpm test:node --reporter mocha-junit-reporter --reporter-options mochaFile=./results.xml


- name: Execute Spec Test Vector Report
if: always() && steps.tests.conclusion != 'skipped'
uses: TBD54566975/sdk-report-runner/.github/actions/specs-report@main
with:
junit-report-paths: packages/*/results.xml
spec-path: tbdex
fail-on-missing-vectors: true
fail-on-failed-test-cases: true
comment-on-pr: true
git-token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload test results to update SDK reports
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 6c5f353

Please sign in to comment.