Ângelo Tadeucci b25fb52d34
Create dependabot.yml (#18)
Co-authored-by: AngeloTadeucci <AngeloTadeucci@users.noreply.github.com>
2023-06-06 20:11:09 -03:00

24 lines
704 B
YAML

name: Prettier
on:
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
with:
ref: ${{ github.head_ref }}
- name: Setup Node.js environment
uses: actions/setup-node@v2.5.2
with:
node-version: "18.x"
- run: npm ci
- run: npm run prettier
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4.16.0
with:
commit_message: Apply prettier changes
branch: ${{ github.head_ref }}