Skip to content

chore: upload log via git push #6

chore: upload log via git push

chore: upload log via git push #6

Workflow file for this run

name: CI
on:
push:
branches: [main, debug-ci]
jobs:
validate:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run Tests
run: bun test > test-output.log 2>&1 || true
- name: Commit test output
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add test-output.log
git commit -m "chore: test output" || echo "No changes to commit"
git push