Skip to content

Update createBranch method to return IGitRef object, enable temp worktree service, improve branch checkout handling, and refactor configuration management #5

Update createBranch method to return IGitRef object, enable temp worktree service, improve branch checkout handling, and refactor configuration management

Update createBranch method to return IGitRef object, enable temp worktree service, improve branch checkout handling, and refactor configuration management #5

Workflow file for this run

name: Build and Test
on:
push:
branches: ['**'] # Triggers on push to any branch
pull_request:
branches: ['main'] # Also run on PRs to main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run build-all
run: yarn build-all