File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Test Compilation
2+ on :
3+ pull_request :
4+ branches :
5+ - ' !main'
6+ push :
7+ branches :
8+ - ' !main'
9+
10+ jobs :
11+ tsc :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Checkout Repo
15+ uses : actions/checkout@v3
16+
17+ - name : Setup PNPM
18+ uses : pnpm/action-setup@v2
19+ with :
20+ version : latest
21+
22+ - name : Setup Node
23+ uses : actions/setup-node@v3
24+ with :
25+ node-version : 18
26+ cache : " pnpm"
27+
28+ - name : Install dependencies
29+ run : pnpm install
30+
31+ - name : Build Packages
32+ run : pnpm run build
Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ export function displayRevertConfirmation(
141141 ) ;
142142 const displaySubject = formatForDisplay ( commit . subject , emojiModeActive ) ;
143143 console . log ( ` ${ textColors . brightWhite ( "Original:" ) } ${ displaySubject } ` ) ;
144+ console . log ( ` ${ textColors . brightWhite ( "Original:" ) } ${ commit . subject } ` ) ;
144145 console . log ( ) ;
145146 console . log (
146147 ` ${ attention ( "This will create a new commit that undoes these changes." ) } ` ,
You can’t perform that action at this time.
0 commit comments