Skip to content

feat: Add commit-ish support to worktree creation command (#4) #17

feat: Add commit-ish support to worktree creation command (#4)

feat: Add commit-ish support to worktree creation command (#4) #17

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install devbox
uses: jetify-com/devbox-install-action@v0.12.0
with:
enable-cache: true
- name: Configure Git to use main as default branch
run: git config --global init.defaultBranch main
- name: Lint check
run: devbox run lint
- name: Type check
run: devbox run type-check
- name: Unit tests
run: devbox run test:unit
- name: Build verification
run: devbox run build
cross-platform-test:
name: Cross-Platform Integration Tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install devbox
uses: jetify-com/devbox-install-action@v0.12.0
with:
enable-cache: true
- name: Configure Git to use main as default branch
run: git config --global init.defaultBranch main
- name: Build for integration tests
run: devbox run build
- name: Integration tests
run: devbox run test:integration