Skip to content

Commit

Permalink
build: fix check names
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHulme committed Dec 15, 2023
1 parent f2cdc35 commit 4baa742
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: lewagon/[email protected]
with:
ref: ${{ github.ref }}
check-name: 'js_test'
check-name: 'test_js'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10
- name: Retrieve JS coverage
Expand All @@ -33,7 +33,7 @@ jobs:
uses: lewagon/[email protected]
with:
ref: ${{ github.ref }}
check-name: 'ruby_test'
check-name: 'test_ruby'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10
- name: Retrieve Ruby coverage
Expand Down

0 comments on commit 4baa742

Please sign in to comment.