feat: Added humoris theme #592
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: Format with Prettier | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "**.php" | |
- "**.md" | |
- "**.js" | |
- "**.css" | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Pull Request | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Checkout Push | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: actions/checkout@v3 | |
- name: Install prettier and plugin-php | |
run: npm install --global prettier @prettier/plugin-php | |
- name: Lint with Prettier | |
continue-on-error: true | |
run: composer lint | |
- name: Prettify code | |
run: composer lint-fix | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "style: Formatted code with Prettier" | |
default_author: github_actions |