Update index.js #57
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
name: internal-test | |
on: [push, pull_request] | |
jobs: | |
macOS: | |
runs-on: macos-latest | |
steps: | |
- name: Get sample file | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: testing/sample.md | |
- name: Love Test Report | |
uses: ellraiser/love-test-report@main | |
with: | |
name: Love Testsuite MacOS | |
title: macos-test-report | |
path: testing/sample.md | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Get sample file | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: testing/sample.md | |
- name: Love Test Report | |
uses: ellraiser/love-test-report@main | |
with: | |
name: Love Testsuite Windows | |
title: windows-test-report | |
path: testing/sample.md | |
linux-os: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Get sample file | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: testing/sample.md | |
- name: Love Test Report | |
uses: ellraiser/love-test-report@main | |
with: | |
name: Love Testsuite Linux | |
title: linux-test-report | |
path: testing/sample.md |