Skip to content

Commit

Permalink
ci: export parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfreska committed Sep 13, 2023
1 parent 1883150 commit 553de1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,5 @@ jobs:
ASSETS: ${{ github.workspace }}/assets
- name: Export
shell: bash
run: npx nx affected --target=export --configuration=ci --parallel=5
# issue with parallelism
run: npx nx affected --target=export --configuration=ci --parallel=1
9 changes: 0 additions & 9 deletions libs/design-system/src/lib/entityTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,6 @@ const txTypeMap: Record<TxType, string> = {
// setup: 'setup',
}

const entityTypeInitialsMap: Record<EntityType, string> = {
block: 'Bk',
contract: 'Ct',
transaction: 'Tx',
output: 'O',
address: 'A',
ip: 'I',
}

export function getEntityTypeLabel(type?: EntityType): string | undefined {
return type ? entityTypeMap[type] : undefined
}
Expand Down

0 comments on commit 553de1a

Please sign in to comment.