diff --git a/.github/workflows/check-tests-after-push.yml b/.github/workflows/check-tests-after-push.yml new file mode 100644 index 0000000..0dcf3f6 --- /dev/null +++ b/.github/workflows/check-tests-after-push.yml @@ -0,0 +1,22 @@ +name: "[Check] Run tests after push" + +on: + push: + branches: '**' + issue_comment: + types: [created, edited, deleted] + +jobs: + integration-tests: + runs-on: windows-2022 + if: ${{ always() && !github.event.comment.body }} + steps: + - run: | + Write-Host "Integration tests" + + nightly-ui-tests: + runs-on: windows-2022 + if: ${{ always() && github.event.issue.pull_request && contains(github.event.comment.body, '/run nightly tests') }} + steps: + - run: | + Write-Host "Nightly tests"