From 8dad07cb1cc67603d2f09a50d7982b50fb06d23e Mon Sep 17 00:00:00 2001 From: Darren Kelly Date: Tue, 26 Dec 2023 00:28:21 +0000 Subject: [PATCH] update actions --- .github/workflows/integration-tests.yaml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index c0695e98d..963f7628d 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -2,6 +2,10 @@ name: Integration Tests on: [push, pull_request] +permissions: + checks: write + pull-requests: write + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true @@ -24,7 +28,7 @@ jobs: yarn install yarn test - - name: Publish Test Results + - name: Publish to Action uses: dorny/test-reporter@v1 if: success() || failure() # run this step even if previous step failed with: @@ -36,4 +40,12 @@ jobs: reporter: 'mocha-json' path: | integration_tests/results.json - + + - name: Publish PR Comment + uses: EnricoMi/publish-unit-test-result-action/composite@v2 + if: always() + with: + check_name: Integration Tests + files: | + integration_tests/results.json +