Add a workflow to test reporting a failed run
This commit is contained in:
parent
e2338066a1
commit
44ae944a29
1 changed files with 14 additions and 0 deletions
14
.github/workflows/test-report-failed-run.yml
vendored
Normal file
14
.github/workflows/test-report-failed-run.yml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
name: Test reporting a failed run
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: ./init
|
||||
with:
|
||||
languages: javascript
|
||||
- name: Fail
|
||||
run: exit 1
|
||||
- uses: ./analyze
|
||||
Loading…
Add table
Add a link
Reference in a new issue