build(deps-dev): bump @vercel/ncc from 0.38.2 to 0.38.3 (#388) #233
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: Update Prettier | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update_prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
version: 20 | |
- run: npm ci | |
- run: npm run lint:fix | |
- uses: gr2m/create-or-update-pull-request-action@v1.x | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
title: "Prettier updated" | |
body: "An update to prettier required updates to your code." | |
branch: ${{ github.ref }} | |
commit-message: "style: prettier" |