Skip to content

Commit

Permalink
Update GitHub build scenarios
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanTsukanov committed Apr 3, 2024
1 parent 4ec6f68 commit 675db36
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ jobs:
npm install
npm run build
- name: Build dashboard-table-view/vue
run: |
cd dashboard-table-view/vue
npm install
npm run build
build-vue3:
runs-on: ubuntu-latest

Expand Down Expand Up @@ -171,6 +177,12 @@ jobs:
npm install
npm run build
- name: Build dashboard-table-view/angular
run: |
cd dashboard-table-view/angular
npm install
npm run build
- name: Build integrate-third-party-angular-components
run: |
cd integrate-third-party-angular-components
Expand Down Expand Up @@ -240,4 +252,10 @@ jobs:
run: |
cd survey-creator-web-service/react
npm install
npm run build
- name: Build dashboard-table-view/react
run: |
cd dashboard-table-view/react
npm install
npm run build
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class QuestionColorPickerModel extends Question {
get colorPickerType(): string {
return this.getPropertyValue("colorPickerType");
}
set colorPickerType(val): string {
set colorPickerType(val) {
this.setPropertyValue("colorPickerType", val);
}
get isSlider(): boolean {
Expand All @@ -28,7 +28,7 @@ export class QuestionColorPickerModel extends Question {
get disableAlpha(): boolean {
return this.getPropertyValue("disableAlpha");
}
set disableAlpha(val): boolean {
set disableAlpha(val) {
this.setPropertyValue("disableAlpha", val);
}
}
Expand Down
1 change: 1 addition & 0 deletions integrate-third-party-vue-components/typings.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module '@lk77/vue3-color'

0 comments on commit 675db36

Please sign in to comment.