feat(kitty): disable font ligatures #37
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: Auto format | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1.4.4 | |
with: | |
node-version: '14.x' | |
- name: Install dependencies | |
run: yarn install | |
- name: Configure git | |
run: | | |
git config --global user.name "${GITHUB_ACTOR}" | |
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- name: Auto format (prettier) | |
run: | | |
git ls-files '**.yml' '**.yaml' '**.json' '**.md' '**.xml' -z | xargs -0 yarn run prettier --write | |
# Cannot modify .github/workflows (refusing to allow a GitHub App to create or update workflow) | |
- name: Ignore github .github/workflows | |
run: | | |
git checkout .github/workflows | |
- name: Commit changes (prettier) | |
run: | | |
git add -u | |
git commit -m 'style: `prettier --write`' || true | |
- name: Push changes | |
run: | | |
git push |