Moves failing job to another workflow to be less scary

This commit is contained in:
Julien Lengrand-Lambert
2021-01-20 17:21:02 +01:00
parent 605bbd9695
commit 708d53d986
2 changed files with 14 additions and 11 deletions

13
.github/workflows/main-failing.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
on: [push]
jobs:
check_html_links_failing_job:
runs-on: ubuntu-latest
name: A job to test check-html-links-action that should fail
steps:
- uses: actions/checkout@v2
- name: check-html-links-action step
id: check-links
uses: jlengrand/check-html-links-action@v02
with:
doc-folder: 'test-site-failing'

View File

@@ -10,14 +10,4 @@ jobs:
id: check-links
uses: jlengrand/check-html-links-action@v02
with:
doc-folder: 'test-site'
check_html_links_failing_job:
runs-on: ubuntu-latest
name: A job to test check-html-links-action that should fail
steps:
- uses: actions/checkout@v2
- name: check-html-links-action step
id: check-links
uses: jlengrand/check-html-links-action@v02
with:
doc-folder: 'test-site-failing'
doc-folder: 'test-site'