Skip to content

Commit

Permalink
chore: move runs-on to correct place
Browse files Browse the repository at this point in the history
  • Loading branch information
nwittstruck committed Apr 13, 2024
1 parent a1df998 commit a522b63
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/on_push_branch_execute_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ env:
NODE_VERSION: "20.12"

jobs:
runs-on: ubuntu-latest
yarn_test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -26,6 +26,7 @@ jobs:
- run: yarn test

yarn_lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/header/header.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { BaseComponent } from '@components/base/base.component';
templateUrl: './header.component.html',
styleUrls: ['./header.component.scss']
})
export class HeaderComponent extends BaseComponent implements OnInit {
export class HeaderComponent extends BaseComponent {

@Input() options: HeaderOptions;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { first, takeUntil, tap } from 'rxjs/operators';
templateUrl: './thumbnails.component.html',
styleUrls: ['./thumbnails.component.scss'],
})
export class ThumbnailsComponent extends BaseComponent implements OnDestroy, OnInit {
export class ThumbnailsComponent extends BaseComponent implements OnDestroy {
private thumbnailsContainer: any;
public swiperModules = [IonicSlides];

Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/settings/settings.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { BaseService } from '@services/base/base.service';
templateUrl: './settings.page.html',
styleUrls: ['./settings.page.scss'],
})
export class SettingsPage extends BasePage implements OnInit {
export class SettingsPage extends BasePage {

constructor(
public baseService: BaseService
Expand Down

0 comments on commit a522b63

Please sign in to comment.