diff --git a/.github/workflows/lint-docs.yml b/.github/workflows/lint-docs.yml index d065b631..b4caf303 100644 --- a/.github/workflows/lint-docs.yml +++ b/.github/workflows/lint-docs.yml @@ -1,7 +1,7 @@ # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: lint:docs +name: lint-docs on: push: @@ -10,7 +10,7 @@ on: branches: [ next ] jobs: - build: + lint-docs: runs-on: ubuntu-latest diff --git a/.github/workflows/lint-js.yml b/.github/workflows/lint-js.yml index d9750b76..6aca83a1 100644 --- a/.github/workflows/lint-js.yml +++ b/.github/workflows/lint-js.yml @@ -1,7 +1,7 @@ # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: lint:js +name: lint-js on: push: @@ -10,7 +10,7 @@ on: branches: [ next ] jobs: - build: + lint-js: runs-on: ubuntu-latest diff --git a/.github/workflows/test-js.yml b/.github/workflows/test-js.yml index c202c4c7..18b38822 100644 --- a/.github/workflows/test-js.yml +++ b/.github/workflows/test-js.yml @@ -1,7 +1,7 @@ # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: test:js +name: test-js on: push: @@ -10,7 +10,7 @@ on: branches: [ next ] jobs: - build: + test-js: runs-on: ubuntu-latest