updated events to merge as well. #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Salesforce CI - Build and Test Package on Open PR & Merge | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "21.x" | |
- name: Install Salesforce CLI | |
run: | | |
npm install --global sfdx-cli | |
sfdx --version | |
sfdx plugins --core | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Store Secret for debhub | |
- name: Populate auth file with DEVHUB_SFDX_URL secrets | |
shell: bash | |
run: | | |
echo ${{ secrets.DEVHUB_SFDX_URL }} > ./DEVHUB_SFDX_URL.txt | |
secretFileSize=$(wc -c "./DEVHUB_SFDX_URL.txt" | awk '{print $1}') | |
if [ $secretFileSize == 1 ]; then | |
echo "DEVHUB_SFDX_URL secret is empty or not set. Is this workflow running on a fork? Exiting..."; | |
exit 1; | |
fi | |
- name: Authenticate to Dev Hub | |
run: sfdx auth:sfdxurl:store -f ./DEVHUB_SFDX_URL.txt -a devhub -d | |
- name: Create Scratch Org | |
run: sfdx force:org:create -s -f config/project-scratch-def.json -a MyScratchOrg | |
- name: Push Source to Scratch Org | |
run: sfdx force:source:push -u MyScratchOrg | |
- name: Run Apex Tests | |
run: sfdx force:apex:test:run -u MyScratchOrg --wait 10 --resultformat human --codecoverage |