From 4baa74237727d962bea244519519b10f89146de6 Mon Sep 17 00:00:00 2001 From: Stephen Hulme Date: Fri, 15 Dec 2023 11:59:12 +0000 Subject: [PATCH] build: fix check names --- .github/workflows/test_js.yml | 2 +- .github/workflows/test_ruby.yml | 2 +- .github/workflows/upload_coverage.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_js.yml b/.github/workflows/test_js.yml index 54b6321df..4caae3a0b 100644 --- a/.github/workflows/test_js.yml +++ b/.github/workflows/test_js.yml @@ -5,7 +5,7 @@ on: - pull_request jobs: - js_test: # note: this name is referenced in upload_coverage.yml + test: runs-on: ubuntu-latest env: TZ: Europe/London diff --git a/.github/workflows/test_ruby.yml b/.github/workflows/test_ruby.yml index bfa30742b..6f5783054 100644 --- a/.github/workflows/test_ruby.yml +++ b/.github/workflows/test_ruby.yml @@ -8,7 +8,7 @@ env: BUNDLE_WITHOUT: 'development lint' jobs: - ruby_test: # note: this name is referenced in upload_coverage.yml + test: runs-on: ubuntu-latest env: TZ: Europe/London diff --git a/.github/workflows/upload_coverage.yml b/.github/workflows/upload_coverage.yml index ba320b897..93ca779c0 100644 --- a/.github/workflows/upload_coverage.yml +++ b/.github/workflows/upload_coverage.yml @@ -19,7 +19,7 @@ jobs: uses: lewagon/wait-on-check-action@v1.3.1 with: ref: ${{ github.ref }} - check-name: 'js_test' + check-name: 'test_js' repo-token: ${{ secrets.GITHUB_TOKEN }} wait-interval: 10 - name: Retrieve JS coverage @@ -33,7 +33,7 @@ jobs: uses: lewagon/wait-on-check-action@v1.3.1 with: ref: ${{ github.ref }} - check-name: 'ruby_test' + check-name: 'test_ruby' repo-token: ${{ secrets.GITHUB_TOKEN }} wait-interval: 10 - name: Retrieve Ruby coverage