We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db74366 commit 1cb6687Copy full SHA for 1cb6687
2 files changed
.github/actions/code-pushup/action.yml
@@ -14,9 +14,10 @@ runs:
14
using: composite
15
steps:
16
- name: Run Node script
17
- run: npx tsx .github/actions/code-pushup/src/runner.ts
+ run: node .github/actions/code-pushup/src/runner.ts
18
shell: bash
19
env:
20
TSX_TSCONFIG_PATH: .github/actions/code-pushup/tsconfig.json
21
+ NODE_OPTIONS: --import=tsx
22
GH_TOKEN: ${{ inputs.token }}
23
MODE: ${{ inputs.mode }}
.github/actions/code-pushup/src/runner.ts
@@ -159,7 +159,8 @@ async function run(): Promise<void> {
159
}
160
: {
161
jobId: 'standalone-mode',
162
- bin: 'npx nx code-pushup --',
+ // run without Nx to demonstrate native GitHub Actions log groups
163
+ bin: 'node packages/cli/src/index.ts',
164
};
165
166
const gitRefs = parseGitRefs();
0 commit comments