Skip to content

Commit

Permalink
CI Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ObliviousHarmony committed Sep 17, 2024
1 parent f928bfb commit 7af3bce
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/phpcs-report/__tests__/worker.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,20 @@ describe('Worker', () => {
process.platform === 'win32' ? 'phpcs.bat' : 'phpcs'
);

const logPath = resolvePath(
__dirname,
'..',
'..',
'..',
'vendor',
'bin'
);

console.log(
child_process.execSync('pwd', {
encoding: 'utf-8',
}),
child_process.execSync('ls -la ' + __dirname, { encoding: 'utf-8' })
child_process.execSync('ls -la ' + logPath, { encoding: 'utf-8' })
);

try {
Expand Down

0 comments on commit 7af3bce

Please sign in to comment.