π¦ Bump the dev-dependencies group across 1 directory with 8 updates #96
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
if: github.actor != 'eemoji-bot' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Set node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Install eemoji | |
run: pnpm i --ignore-scripts | |
- name: Build eemoji | |
run: pnpm run build | |
- name: Setup eemoji | |
run: pnpm run postinstall | |
- name: Set git bot | |
run: | | |
git config --global user.email "eemoji-bot@users.noreply.github.com" | |
git config --global user.name "eemoji-bot" | |
- name: Make a commit with a keyword | |
run: 'git commit --allow-empty -m ''test: eemoji''' | |
- name: Check the commit message for emoji | |
run: git log -1 --pretty=%B | grep -q "π" |