From 6e7a7039299454ccdf40fab93cff747e1eb8c233 Mon Sep 17 00:00:00 2001 From: Christian Bromann Date: Thu, 21 Dec 2023 12:57:08 -0800 Subject: [PATCH] add emoji to pipeline labels --- .github/workflows/release.yml | 12 ++++++------ .github/workflows/tests.yml | 14 +++++++------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8099d85f..f029fb38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,26 +14,26 @@ jobs: node-version: [20.x] steps: - - name: Checkout Repo + - name: ⬇️ Checkout Repository uses: actions/checkout@v3 - - name: Setup Git + - name: 🌲 Setup Git run: | git config --global user.email "bot@webdriver.io" git config --global user.name "WebdriverIO Release Bot" - - name: Setup pnpm + - name: πŸ“¦ Setup pnpm uses: pnpm/action-setup@v2 with: version: 8 - - name: Setup Node.js ${{ matrix.node-version }} + - name: 🟒 Setup Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: pnpm - - name: Install Dependencies + - name: 🧩 Install Dependencies run: pnpm install - name: πŸ—οΈ Build @@ -41,7 +41,7 @@ jobs: run: | pnpm build - - name: Create Release Pull Request or Publish to npm + - name: πŸ“£ Create Release Pull Request or Publish to npm id: changesets uses: changesets/action@v1 with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0bd4cab1..66f93768 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,32 +15,32 @@ jobs: node-version: [20.x] steps: - - name: Checkout Repository + - name: ⬇️ Checkout Repository uses: actions/checkout@v2 - - name: Setup pnpm + - name: πŸ“¦ Setup pnpm uses: pnpm/action-setup@v2 with: version: 8 - - name: Setup Node.js ${{ matrix.node-version }} + - name: 🟒 Setup Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: pnpm - - name: Install dependencies + - name: 🧩 Install Dependencies run: pnpm install - - name: Build the code + - name: πŸ—οΈ Build working-directory: ./ run: pnpm build - - name: Run Tests + - name: πŸ§ͺ Run linting and unit tests working-directory: ./ run: pnpm test - - name: Build and E2E test the site + - name: πŸ˜Άβ€πŸŒ«οΈ Run e2e tests working-directory: ./ env: SAUCE_USERNAME_WDIO_ICS: ${{ secrets.SAUCE_USERNAME_WDIO_ICS }}