Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Dec 26, 2023
1 parent d9c71c0 commit 8dad07c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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

0 comments on commit 8dad07c

Please sign in to comment.