From 44ae944a297702bccab46160cab2d052643e6beb Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Tue, 22 Nov 2022 18:46:13 +0000 Subject: [PATCH] Add a workflow to test reporting a failed run --- .github/workflows/test-report-failed-run.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/test-report-failed-run.yml diff --git a/.github/workflows/test-report-failed-run.yml b/.github/workflows/test-report-failed-run.yml new file mode 100644 index 000000000..71b748f32 --- /dev/null +++ b/.github/workflows/test-report-failed-run.yml @@ -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