Skip to content

Update @types/bun requirement from ^1.3.2 to ^1.3.3 (#73) #22

Update @types/bun requirement from ^1.3.2 to ^1.3.3 (#73)

Update @types/bun requirement from ^1.3.2 to ^1.3.3 (#73) #22

Workflow file for this run

name: Retouch
on:
push:
branches:
- main
jobs:
job:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
registry-url: https://registry.npmjs.org
- name: Install Prettier
run: bun add -g prettier
- name: Run Prettier
run: prettier --write ./
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Commit and push
run: |
if [[ -n $(git status --porcelain) ]]; then
git add ./
git commit -m "✨ chore: retouch"
git push
else
echo "No changes."
fi