diff options
author | nea <romangraef@gmail.com> | 2021-08-13 01:30:12 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2021-08-13 01:30:12 +0200 |
commit | b08f576aaaac1242a35a8b9d6dd7482a8124d732 (patch) | |
tree | 17eb19eff4b2bd19cb67c067e0f6307ae8986e7b /.github | |
parent | 62d3fcb7500e623b8c4a1b79c2e271121c3ce794 (diff) | |
download | webos-b08f576aaaac1242a35a8b9d6dd7482a8124d732.tar.gz webos-b08f576aaaac1242a35a8b9d6dd7482a8124d732.tar.bz2 webos-b08f576aaaac1242a35a8b9d6dd7482a8124d732.zip |
use a javascript viable tester
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d9bd00..f254cbe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,28 +13,13 @@ jobs: uses: actions/setup-java@v1 with: java-version: 16 - - name: Get Allure history - uses: actions/checkout@v2 - if: always() - continue-on-error: true - with: - ref: gh-pages - path: gh-pages - name: Run Gradle Tests - run: ./gradlew jsNodeTest --stacktrace - - name: Generate Allure Report - if: always() - uses: simple-elf/allure-report-action@master - with: - allure_results: build/test-results/jsNodeTest - allure_history: allure-history - - + run: ./gradlew jsTest --stacktrace - name: Deploy report to Github Pages if: always() uses: peaceiris/actions-gh-pages@v2 env: PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }} PUBLISH_BRANCH: gh-pages - PUBLISH_DIR: allure-history + PUBLISH_DIR: build/reports/test/jsTest |