scoresaber-reloadedv3/.gitea/workflows/!-fix-bun-lock-file.yml
Renovate Bot 17dfa1c9e3
Some checks failed
Fix bun lock file / build (push) Failing after 1m10s
Update actions/checkout action to v4
2024-10-09 17:04:18 +00:00

27 lines
622 B
YAML

name: Fix bun lock file
on:
workflow_dispatch:
push:
paths:
- '**/package.json' # Detect changes in any package.json file in any directory
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Commit bun lock file
run: |
git config --global user.email "helper@fascinated.cc"
git config --global user.name "Bun Fixer"
git add bun.lockb
git commit -m "Fix bun lock file"
git push