Skip to content

Commit 25a564b

Browse files
committed
Removed combiner component and added initial commit for github workflows
1 parent 0dd9727 commit 25a564b

4 files changed

Lines changed: 27 additions & 27 deletions

File tree

.github/workflows/tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
node-version: [10.x, 12.x, 14.x]
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v1
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
- run: npm ci
25+
- run: npm run build --if-present
26+
- run: npm test -- --watch=false --browsers=ChromeHeadless

src/app/app.module.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { TopHeaderComponent } from './component/top-header/top-header.component'
1414
import { TaskDescriptionComponent } from './component/task-description/task-description.component';
1515
import { ymlService } from './service/yaml-parser/yaml-parser.service';
1616
import { HttpClientModule } from '@angular/common/http';
17-
import { CombinerService } from './service/combiner/combiner.service';
1817
import { CircularHeatmapComponent } from './component/circular-heatmap/circular-heatmap.component';
1918
import { MappingComponent } from './component/mapping/mapping.component';
2019
import { ReadmeToHtmlComponent } from './component/readme-to-html/readme-to-html.component';
@@ -49,7 +48,7 @@ import { DependencyGraphComponent } from './dependency-graph/dependency-graph.co
4948
HttpClientModule
5049

5150
],
52-
providers: [ymlService,CombinerService],
51+
providers: [ymlService],
5352
bootstrap: [AppComponent]
5453
})
5554
export class AppModule { }

src/app/service/combiner/combiner.service.spec.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/app/service/combiner/combiner.service.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)