Skip to content

Commit

Permalink
ci(test): test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jogelin committed Dec 14, 2024
1 parent c725a28 commit 26ac964
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ jobs:

- uses: nrwl/nx-set-shas@v4

- name: Debug Node.js and npm
run: |
node --version
npm --version
which npm
which npx
- run: pnpm nx-cloud start-ci-run --distribute-on="5 linux-medium-js" --stop-agents-after=e2e
# - run: pnpm nx-cloud record -- nx format:check
- run: pnpm nx-cloud record -- nx format:check
- run: pnpm nx affected -t e2e
3 changes: 2 additions & 1 deletion e2e/utils/create-huge-nx-workspace.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ export function createHugeNxWorkspace(
return runCommand(command, tmpE2eRoot);
}

export const tmpE2eRoot = isCI ? dirSync({ prefix: 'huge-nx-e2e-' }).name : join(`${workspaceRoot}/tmp/huge-nx-e2e`);
// export const tmpE2eRoot = isCI ? dirSync({ prefix: 'huge-nx-e2e-' }).name : join(`${workspaceRoot}/tmp/huge-nx-e2e`);
export const tmpE2eRoot = join(`${workspaceRoot}/tmp/huge-nx-e2e`);

export const getWsName = (hugeNxConventions: string, nxVersion = 'latest') => {
const wsName = hugeNxConventions.split('/')?.pop()?.replace('.conventions.ts', `-${nxVersion}`);
Expand Down

0 comments on commit 26ac964

Please sign in to comment.