From 182dc5410d9d7f8ae33c015b6d84b9531a8f976f Mon Sep 17 00:00:00 2001 From: Alex Plischke Date: Mon, 3 Jun 2024 16:07:52 -0700 Subject: [PATCH] chore: showcase spotlight reporter (#52) --- .github/PULL_REQUEST_TEMPLATE.md | 6 ++++++ .github/workflows/test.yml | 8 ++++---- .sauce/config.yml | 4 ++++ examples/typescript/.sauce/config.yml | 4 ++++ 4 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..a16d394 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,6 @@ +## Description + diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 679fd52..a137689 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,8 +18,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Saucectl RUN - uses: saucelabs/saucectl-run-action@v3 + - name: Run saucectl + uses: saucelabs/saucectl-run-action@v4 with: concurrency: 10 @@ -29,8 +29,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Testcafe with Typescript - uses: saucelabs/saucectl-run-action@v3 + - name: Run saucectl + uses: saucelabs/saucectl-run-action@v4 with: working-directory: ./examples/typescript concurrency: 10 diff --git a/.sauce/config.yml b/.sauce/config.yml index 3df96f5..bd0b155 100644 --- a/.sauce/config.yml +++ b/.sauce/config.yml @@ -45,3 +45,7 @@ artifacts: match: - console.log directory: ./artifacts/ + +reporters: + spotlight: # Prints an overview of failed or otherwise interesting jobs. + enabled: true diff --git a/examples/typescript/.sauce/config.yml b/examples/typescript/.sauce/config.yml index 4ee3482..5593dcb 100644 --- a/examples/typescript/.sauce/config.yml +++ b/examples/typescript/.sauce/config.yml @@ -36,3 +36,7 @@ artifacts: match: - console.log directory: ./artifacts/ + +reporters: + spotlight: # Prints an overview of failed or otherwise interesting jobs. + enabled: true