Skip to content

Refactor(icons): Various edits of the icons #283

Refactor(icons): Various edits of the icons

Refactor(icons): Various edits of the icons #283

Workflow file for this run

name: Commits Check
on:
push:
branches-ignore:
- main
jobs:
commitlint:
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 16
- name: Fetch Git history
run: git fetch --no-tags --depth=50 origin main
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Commitlint
run: npx commitlint --color --verbose --from $(git merge-base origin/main HEAD)