Skip to content

Commit

Permalink
fix(ci): disable jest report step for dependavot
Browse files Browse the repository at this point in the history
  • Loading branch information
ReidWeb committed Sep 20, 2021
1 parent 21e3be7 commit 7a945c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ name: Build, Test & Lint
# Controls when the workflow will run
on:
push:
branches:
- main
- develop
pull_request:

# Allows you to run this workflow manually from the Actions tab
Expand Down Expand Up @@ -35,7 +38,7 @@ jobs:

- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
if: github.actor != 'dependabot-bot' && (success() || failure()) # run this step even if previous step failed
with:
name: JEST Tests # Name of the check run which will be created
path: reports/jest-*.xml # Path to test results
Expand Down
4 changes: 2 additions & 2 deletions docs/api/classes/client_LodestoneClient.default.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Client for interfacing with the Final Fantasy XIV Lodestone

#### Defined in

[LodestoneClient.ts:53](https://github.com/XIVStats/lodestone/blob/66019f1/src/client/LodestoneClient.ts#L53)
[LodestoneClient.ts:53](https://github.com/XIVStats/lodestone/blob/21e3be7/src/client/LodestoneClient.ts#L53)

## Properties

Expand All @@ -43,4 +43,4 @@ An instance will be generated by default, but as a consumer you can provide your

#### Defined in

[LodestoneClient.ts:49](https://github.com/XIVStats/lodestone/blob/66019f1/src/client/LodestoneClient.ts#L49)
[LodestoneClient.ts:49](https://github.com/XIVStats/lodestone/blob/21e3be7/src/client/LodestoneClient.ts#L49)

0 comments on commit 7a945c4

Please sign in to comment.