From 27fb1ea6170501ee08d29589fc7e094b5d2d1077 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Date: Fri, 10 Jun 2022 18:34:05 +0200 Subject: [PATCH] tweak the CI actions names --- .github/workflows/lint-docs.yml | 4 ++-- .github/workflows/lint-js.yml | 4 ++-- .github/workflows/test-js.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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