Skip to content

Commit

Permalink
[CI] Rename workflow jobs so that they reflect what they do
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Dumais <marc.dumais@ericsson.com>
  • Loading branch information
marcdumais-work committed Mar 22, 2023
1 parent 1ca8131 commit dacd392
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
yarn lint
build:
name: Build (${{ matrix.os }}, node-${{ matrix.node }}
name: Build and Test (${{ matrix.os }}, node-${{ matrix.node }})

strategy:
fail-fast: false
Expand Down Expand Up @@ -114,6 +114,7 @@ jobs:
xvfb-run -a yarn electron test
publish:
name: Publish to NPM and GitHub pages
needs: build
if: github.ref == 'refs/heads/master' && github.event_name != 'schedule' # We still publish the manually dispatched workflows: 'workflow_dispatch'.
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:

License-check:
name: ${{ matrix.os }}, Node.js v${{ matrix.node }}
name: 3PP License Check

strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
build-and-test-performance:
name: ubuntu-latest, Node.js 16.x
name: Performance Tests

runs-on: ubuntu-latest
timeout-minutes: 30
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
build-and-test-playwright:
name: ubuntu-latest, Node.js 16.x
name: Playwright Tests (ubuntu-latest, Node.js 16.x)

runs-on: ubuntu-latest
timeout-minutes: 60
Expand Down

0 comments on commit dacd392

Please sign in to comment.