feat: Add withTextMagnifier
mixin for enabling magnified text on focus
#2166
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: Pull Request | |
on: | |
pull_request: | |
types: [opened, edited, reopened, synchronize, ready_for_review] | |
permissions: read-all | |
jobs: | |
quality: | |
uses: ./.github/workflows/quality.yml | |
check-pr-title: | |
name: Check PR title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check PR title format | |
run: | | |
title=$(jq --raw-output .pull_request.title $GITHUB_EVENT_PATH) | |
if [ $(echo $title | grep -Eoc '^(feat|fix|chore|docs|test|build)(\([a-z,A-Z]+\))?: .{1,100}+$') -eq 0 ]; then # https://regex101.com/r/swQ454/1 | |
echo "PR title does not comply with conventional commits" | |
echo "PR title does not comply with conventional commits: $(cat pull-request-title/title)" > comment/comment | |
exit 1 | |
fi |