@@ -148,8 +148,8 @@ describe('README Documentation Validation', () => {
148148 lines . forEach ( line => {
149149 const trimmed = line . trim ( ) ;
150150 if ( trimmed && ! trimmed . startsWith ( '#' ) ) {
151- // Should start with valid command patterns
152- expect ( trimmed ) . toMatch ( / ^ ( n p m | n p x | n o d e | c l a u d e | m k d i r | c d | l s | c a t | e c h o | g i t | c p | c h m o d | c u r l | p y t h o n 3 ? | \. \/ s c r i p t s ) / ) ;
151+ // Should start with valid command patterns (including GitHub CLI)
152+ expect ( trimmed ) . toMatch ( / ^ ( n p m | n p x | n o d e | c l a u d e | m k d i r | c d | l s | c a t | e c h o | g i t | g h | c p | c h m o d | c u r l | p y t h o n 3 ? | \. \/ s c r i p t s ) / ) ;
153153 }
154154 } ) ;
155155 }
@@ -209,8 +209,8 @@ describe('README Documentation Validation', () => {
209209 bash . split ( '\n' ) . forEach ( line => {
210210 const trimmed = line . trim ( ) ;
211211 if ( trimmed && ! trimmed . startsWith ( '#' ) ) {
212- // Should start with valid command patterns
213- expect ( trimmed ) . toMatch ( / ^ ( n p m | n p x | n o d e | c l a u d e | m k d i r | c d | l s | c a t | e c h o | g i t | c p | c h m o d | c u r l | p y t h o n 3 ? | \. \/ s c r i p t s ) / ) ;
212+ // Should start with valid command patterns (including GitHub CLI)
213+ expect ( trimmed ) . toMatch ( / ^ ( n p m | n p x | n o d e | c l a u d e | m k d i r | c d | l s | c a t | e c h o | g i t | g h | c p | c h m o d | c u r l | p y t h o n 3 ? | \. \/ s c r i p t s ) / ) ;
214214 }
215215 } ) ;
216216 } ) ;
@@ -312,6 +312,7 @@ describe('README Documentation Validation', () => {
312312 expect ( readmeContent ) . toMatch ( / # # # S e t u p w i t h C l a u d e / ) ;
313313 expect ( readmeContent ) . toMatch ( / # # H o w I t W o r k s / ) ;
314314 expect ( readmeContent ) . toMatch ( / # # R e a l - W o r l d U s a g e E x a m p l e s / ) ;
315+ expect ( readmeContent ) . toMatch ( / # # C o n t r i b u t i n g & G i t W o r k f l o w / ) ;
315316 } ) ;
316317
317318 it ( 'should have consistent formatting' , ( ) => {
0 commit comments