Skip to content

Commit

Permalink
Style(ci): Introducing emojis for job names
Browse files Browse the repository at this point in the history
  • Loading branch information
literat committed Sep 20, 2024
1 parent 955f9f6 commit 5ecf013
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Commits Check
name: 🔍 Commit Checks

on:
push:
Expand All @@ -7,6 +7,7 @@ on:

jobs:
commitlint:
name: 🧾 Commit Linting
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/component-analysis.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name: Component Analysis
name: 🧩 Component Analysis

on:
schedule:
- cron: '0 6 * * 1' # every Monday at 6:00

jobs:
omlet_analyze:
name: 🍳 Analyze Components
runs-on: ubuntu-latest

steps:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: End-to-end Tests
name: 🤖 End-to-end Tests
on:
push:
branches: [main]
Expand All @@ -16,7 +16,7 @@ env:

jobs:
haslabel:
name: analyse labels
name: 🏷️ Labels Analyzing
runs-on: ubuntu-latest
outputs:
e2e: ${{ steps.haslabel.outputs.labeled-run-visual-tests }}
Expand All @@ -33,6 +33,7 @@ jobs:
contains: 'run-visual-tests'

test:
name: 🧪 End-to-End Testing
needs: hasLabel
if: ${{ needs.haslabel.outputs.e2e || (github.ref == 'refs/heads/main') }}
runs-on: ubuntu-22.04
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/git.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Git Check
name: 🔍 Git Checks

on: [pull_request]

jobs:
block-fixup-merge:
name: 🚫 Blocked Merge by Fixup
runs-on: ubuntu-22.04

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown-link-check.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Markdown Link Check
name: 📄 Markdown Link Check

on:
push:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
markdown-link-check:
name: 'Markdown link check'
name: 🔗 Markdown Link Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish
name: 🚀 Publish

on:
push:
Expand All @@ -10,7 +10,7 @@ on:
jobs:
publish:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
name: Publish package
name: 📦 Publish Package
runs-on: ubuntu-22.04
steps:
- name: Clone repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/supernova.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Supernova
name: 💥 Supernova

on:
push:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
publish:
name: Publish Supernova Documentation
name: 🚀 Publish Supernova Documentation
runs-on: ubuntu-22.04
steps:
- name: Clone repository
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test-web-twig.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Web Twig: Code Quality Checks'
name: '🔍 Web Twig: Code Quality Checks'

on:
push:
Expand All @@ -16,6 +16,7 @@ on:

jobs:
prepare-icons:
name: 📱 Icons Preparing
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -43,7 +44,7 @@ jobs:
php-version: ['8.1', '8.2', '8.3']
dependencies: ['']

name: Unit tests - PHP ${{ matrix.php-version }} ${{ matrix.dependencies }}
name: 🧪 Unit testing - PHP ${{ matrix.php-version }} ${{ matrix.dependencies }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -86,7 +87,7 @@ jobs:
~/.composer/vendor/bin/php-coveralls --coverage_clover=coverage/clover.xml --json_path=coverage/coveralls-upload.json -v
finalize-tests:
name: Tests finished
name: 🏁 Test Finalizing
needs: [unit-tests]
runs-on: ubuntu-latest
steps:
Expand All @@ -99,7 +100,7 @@ jobs:
carryforward: web, web-react, analytics, design-tokens, icons, common, codemods, form-validations

codestyle:
name: 'Code style and static analysis'
name: '📐 Code Style and Types Analyizing'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 5ecf013

Please sign in to comment.