File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88jobs :
99 node :
1010 runs-on : ubuntu-latest
11- timeout-minutes : 10
11+ timeout-minutes : 20 # Increased: lens tests + integration tests take ~8-11min
1212 steps :
1313 - name : Checkout
1414 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 99jobs :
1010 verify :
1111 runs-on : ubuntu-latest
12- timeout-minutes : 10
12+ timeout-minutes : 20 # Increased: lens tests + integration tests take ~8-11min
1313 steps :
1414 - name : Checkout
1515 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 88const driveWatch = require ( '../services/google/drive-watch.cjs' ) ;
99const drive = require ( '../services/google/drive.cjs' ) ;
1010
11+ // Skip in CI - OAuth credentials are user-specific (not in GitHub Secrets)
12+ const SKIP_IN_CI = process . env . CI === 'true' ;
13+ if ( SKIP_IN_CI ) {
14+ console . log ( '⏭️ Skipping Google OAuth tests in CI (credentials not available)' ) ;
15+ process . exit ( 0 ) ;
16+ }
17+
1118console . log ( '🧪 Drive Watch Webhook Validation\n' ) ;
1219console . log ( '═' . repeat ( 70 ) ) ;
1320
Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ const docs = require('../services/google/docs.cjs');
1111const sheets = require ( '../services/google/sheets.cjs' ) ;
1212const gmail = require ( '../services/google/gmail.cjs' ) ;
1313
14+ // Skip in CI - OAuth credentials are user-specific (not in GitHub Secrets)
15+ const SKIP_IN_CI = process . env . CI === 'true' ;
16+ if ( SKIP_IN_CI ) {
17+ console . log ( '⏭️ Skipping Google OAuth tests in CI (credentials not available)' ) ;
18+ process . exit ( 0 ) ;
19+ }
20+
1421console . log ( '🧪 Google Workspace Integration Validation\n' ) ;
1522console . log ( 'Testing all services with existing OAuth credentials\n' ) ;
1623console . log ( '═' . repeat ( 70 ) ) ;
You can’t perform that action at this time.
0 commit comments