Skip to content

Commit

Permalink
add emoji to pipeline labels
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Dec 21, 2023
1 parent 9099cd1 commit 6e7a703
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,34 @@ 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 "[email protected]"
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
id: build-the-mono-repo
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:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 6e7a703

Please sign in to comment.