-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (53 loc) · 1.64 KB
/
feature-2gp-with-robot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
on:
workflow_call:
inputs:
cumulusci-version:
required: false
type: string
sfdx-version:
required: false
type: string
secrets:
dev-hub-auth-url:
required: true
jobs:
feature-test:
name: "Feature Test"
runs-on: ubuntu-latest
steps:
- uses: cumulus-actions/feature-test@v1
with:
dev-hub-auth-url: '${{ secrets.dev-hub-auth-url }}'
cumulusci-version: '${{ inputs.cumulusci-version }}'
sfdx-version: '${{ inputs.sfdx-version }}'
build-feature-test-package:
name: "Build Feature Test Package"
runs-on: ubuntu-latest
steps:
- uses: cumulus-actions/build-feature-test-package@v1
with:
dev-hub-auth-url: ${{ secrets.dev-hub-auth-url }}
cumulusci-version: '${{ inputs.cumulusci-version }}'
sfdx-version: '${{ inputs.sfdx-version }}'
feature-test-2gp:
name: "Feature Test - 2GP"
runs-on: ubuntu-latest
needs:
- build-feature-test-package
steps:
- uses: cumulus-actions/feature-test-2gp@v1
with:
dev-hub-auth-url: ${{ secrets.dev-hub-auth-url }}
cumulusci-version: '${{ inputs.cumulusci-version }}'
sfdx-version: '${{ inputs.sfdx-version }}'
feature-test-robot-2gp:
name: "Feature Test - Robot 2GP"
runs-on: ubuntu-latest
needs:
- build-feature-test-package
steps:
- uses: cumulus-actions/feature-test-robot-2gp@v1
with:
dev-hub-auth-url: ${{ secrets.dev-hub-auth-url }}
cumulusci-version: '${{ inputs.cumulusci-version }}'
sfdx-version: '${{ inputs.sfdx-version }}'