Skip to content

Commit

Permalink
feat(repo): set names for tasks in circle ci (#2187)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz authored Dec 14, 2019
1 parent f9da4d9 commit fb4fccb
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 13 deletions.
36 changes: 27 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,31 +51,49 @@ jobs:
executor: default
steps:
- setup
- run: yarn checkformat
- run: yarn checkcommit
- run: yarn checkimports
- run: yarn documentation
- run: yarn test:all
- run:
name: Check Formatting
command: yarn checkformat
- run:
name: Check Commit Message Format
command: yarn checkcommit
- run:
name: Check Imports
command: yarn checkimports
- run:
name: Check Documentation
command: yarn documentation
- run:
name: Run Unit Tests
command: yarn test:all
e2e-nx-1:
executor: default
steps:
- setup
- run: yarn e2e-ci1 nx
- run:
name: Nx CLI E2E Tests Part 1
command: yarn e2e-ci1 nx
e2e-nx-2:
executor: default
steps:
- setup
- run: yarn e2e-ci2 nx
- run:
name: Nx CLI E2E Tests Part 2
command: yarn e2e-ci2 nx
e2e-ng-1:
executor: default
steps:
- setup
- run: yarn e2e-ci1 angular
- run:
name: Angular CLI E2E Tests Part 1
command: yarn e2e-ci1 angular
e2e-ng-2:
executor: default
steps:
- setup
- run: yarn e2e-ci2 angular
- run:
name: Angular CLI E2E Tests Part 2
command: yarn e2e-ci2 angular

workflows:
version: 2.1
Expand Down
8 changes: 4 additions & 4 deletions e2e/run-many.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ forEachCli(() => {
const libC = uniq('libc-rand');
const libD = uniq('libd-rand');

l(runCLI(`generate @nrwl/angular:lib ${libA} --publishable`));
l(runCLI(`generate @nrwl/angular:lib ${libB} --publishable`));
l(runCLI(`generate @nrwl/angular:lib ${libC} --publishable`));
l(runCLI(`generate @nrwl/angular:lib ${libD}`));
l(runCLI(`generate @nrwl/angular:lib ${libA} --publishable --defaults`));
l(runCLI(`generate @nrwl/angular:lib ${libB} --publishable --defaults`));
l(runCLI(`generate @nrwl/angular:lib ${libC} --publishable --defaults`));
l(runCLI(`generate @nrwl/angular:lib ${libD} --defaults`));

l('=======> libA depends on libC');
updateFile(
Expand Down

0 comments on commit fb4fccb

Please sign in to comment.