Skip to content

Commit b6bbcb7

Browse files
committed
TEST
1 parent 8f357e2 commit b6bbcb7

File tree

3 files changed

+15
-19
lines changed

3 files changed

+15
-19
lines changed

.github/workflows/ci-validation.yml

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,26 +30,20 @@ jobs:
3030
solution-file: artifactlocation/broadcast_solution.zip
3131
solution-type: Unmanaged
3232
buildBroadCastJs:
33-
runs-on: ubuntu-latest
34-
steps:
35-
- uses: actions/checkout@v4
36-
- uses: ./github/workflows/templates/buildjs.yml
37-
with:
38-
projectdirectory: ${{ env.broadcastjsWorkingDirectory }}
39-
componentName: broadcastjs
40-
publishArtifact: false
41-
testCommand: 'test:ci'
42-
publishCodeCov: ${{github.event_name == 'pull_request'}}
43-
artifactlocation: ${{env.artifactlocation}}
33+
uses: ./github/workflows/templates/buildjs.yml
34+
with:
35+
projectdirectory: ${{ env.broadcastjsWorkingDirectory }}
36+
componentName: broadcastjs
37+
publishArtifact: false
38+
testCommand: 'test:ci'
39+
publishCodeCov: ${{github.event_name == 'pull_request'}}
40+
artifactlocation: ${{env.artifactlocation}}
4441

4542

4643

4744
buildAppModulePickerPCF:
48-
runs-on: ubuntu-latest
49-
steps:
50-
- uses: actions/checkout@v4
51-
- uses: ./.github/workflows/templates/buildpcf.yml
52-
with:
53-
pcfdirectory: ${{ env.pcfWorkkingDirectory }}
54-
publishArtifact: false
55-
componentName: AppModulePicker
45+
uses: ./.github/workflows/templates/buildpcf.yml
46+
with:
47+
pcfdirectory: ${{ env.pcfWorkkingDirectory }}
48+
publishArtifact: false
49+
componentName: AppModulePicker

.github/workflows/templates/buildjs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
name: Build ${{ inputs.componentName }}
3232
runs-on: ubuntu-latest
3333
steps:
34+
- uses: actions/checkout@v4
3435
- name: Install dependencies
3536
run: npm ci
3637
working-directory: ${{ inputs.projectdirectory }}

.github/workflows/templates/buildpcf.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
name: Build ${{ inputs.componentName }}
2323
runs-on: ubuntu-latest
2424
steps:
25+
- uses: actions/checkout@v4
2526
- name: Install dependencies
2627
run: npm ci
2728
working-directory: ${{ inputs.pcfdirectory }}

0 commit comments

Comments
 (0)