mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-04-20 03:02:51 -04:00
Split smoke, core, and prompt-module suites and make test:e2e self-contained with an explicit build step and version-check bypass. Move core CLI coverage to a process-based harness with mock OpenAI boundary checks, add user-path scenarios, refresh CI jobs, and commit the rebuilt out/cli.cjs artifact.
14 lines
326 B
Bash
Executable File
14 lines
326 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
current_dir=$(pwd)
|
|
setup_dir="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
# Set up for prompt-module/commitlint
|
|
cd $setup_dir && cd prompt-module/data/commitlint_9 && npm ci
|
|
cd $setup_dir && cd prompt-module/data/commitlint_18 && npm ci
|
|
cd $setup_dir && cd prompt-module/data/commitlint_19 && npm ci
|
|
|
|
cd $current_dir
|