Skip to content

Commit

Permalink
fixup! Style(ci): Introducing emojis for job names
Browse files Browse the repository at this point in the history
  • Loading branch information
literat committed Sep 30, 2024
1 parent ff66ec4 commit d76a7e8
Showing 1 changed file with 5 additions and 30 deletions.
35 changes: 5 additions & 30 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ env:
NX_NO_CLOUD: true

jobs:
install:
name: 🧶 Dependencies Installing
install-build:
name: 🧶 Install Deps and 🏗️ Build Design Tokens
runs-on: ubuntu-24.04
timeout-minutes: 10
env:
Expand All @@ -26,31 +26,6 @@ jobs:
- name: Setup Node and Install Dependencies
uses: ./.github/actions/setup-install

- name: Save Repository to Cache
uses: actions/cache/save@v4
with:
path: ./
key: repository-cache-${{ hashFiles('.*') }}

build:
name: 🏗️ Design Tokens Building
needs: [install]
runs-on: ubuntu-20.04
timeout-minutes: 10
env:
HUSKY: 0

steps:
- name: Restore Repository from Cache
uses: actions/cache/restore@v4
id: restore-repository-cache
with:
path: ./
key: repository-cache-${{ hashFiles('.*') }}

- name: Setup Node
uses: ./.github/actions/setup-node

- name: Build
run: yarn workspace @lmc-eu/spirit-design-tokens build

Expand All @@ -62,7 +37,7 @@ jobs:

lint:
name: 📐 Code Linting
needs: [build]
needs: [install-build]
runs-on: ubuntu-20.04
timeout-minutes: 10
env:
Expand All @@ -84,7 +59,7 @@ jobs:

unit-tests:
name: 🧪 Unit Testing
needs: [build]
needs: [install-build]
runs-on: ubuntu-20.04
timeout-minutes: 10
env:
Expand Down Expand Up @@ -153,7 +128,7 @@ jobs:

types:
name: 📘 Type Checking
needs: [build]
needs: [install-build]
runs-on: ubuntu-20.04
timeout-minutes: 10
env:
Expand Down

0 comments on commit d76a7e8

Please sign in to comment.