mirror of
https://github.com/FoxxMD/multi-scrobbler.git
synced 2026-05-20 17:59:38 +00:00
* Add sanity run steps to check for obvious errors when running in production * Refactor test job to be reusable
16 lines
289 B
YAML
16 lines
289 B
YAML
name: Test Dependabot PR
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- synchronize
|
|
- reopened
|
|
- opened
|
|
branches:
|
|
- 'master'
|
|
|
|
jobs:
|
|
test:
|
|
name: Tests / Build / Sanity Run
|
|
if: github.actor == 'dependabot[bot]'
|
|
uses: ./.github/workflows/testAndSanity.yml
|