We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baaada2 commit 17ed52eCopy full SHA for 17ed52e
.github/actions/src/info/index.ts
@@ -1,7 +1,7 @@
1
import fs from 'fs/promises';
2
import pathlib from 'path';
3
import * as core from '@actions/core';
4
-import { getExecOutput } from '@actions/exec';
+import { exec, getExecOutput } from '@actions/exec';
5
6
interface PackageRecord {
7
directory: string
@@ -66,6 +66,7 @@ async function findPackages(directory: string, maxDepth?: number) {
66
}
67
68
async function main() {
69
+ await exec('pwd');
70
const gitRoot = pathlib.resolve(process.cwd());
71
72
core.info(`git root is ${gitRoot}`);
0 commit comments