Basic health, first iteration #802
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#https://game.ci/docs/github/test-runner | |
name: Run Tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
run_tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project code | |
uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- run: npm install @actions/core | |
- run: npm install @actions/github | |
- run: npm install jsdom | |
- run: npm install fs | |
- name: Run tests | |
uses: game-ci/unity-test-runner@v2 | |
env: | |
UNITY_LICENSE_FILE: ../Documents/UnityLicense.ulf | |
- name: Produce summary output | |
uses: ./.github/actions/interpret-test-results | |
if: always() | |
id: interpret-test-results | |
with: | |
XML_PATH: artifacts/editmode-results.xml | |
- name: Notify discord if tests fail | |
uses: rjstone/discord-webhook-notify@v1 | |
if: failure() && github.event_name != 'pull_request' | |
with: | |
severity: error | |
details: ${{ steps.interpret-test-results.outputs.DISPLAY_STRING }} | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK_TEST_RESULTS }} | |
- name: Notify discord if tests succeed | |
uses: rjstone/discord-webhook-notify@v1 | |
if: success() && github.event_name != 'pull_request' | |
with: | |
severity: info | |
details: ${{ steps.interpret-test-results.outputs.DISPLAY_STRING }} | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK_TEST_RESULTS }} | |
- name: Upload test results | |
uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: Test results | |
path: artifacts |