--amend #12
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: code-coverage | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Dependencies | |
run: npm install sfdx-cli | |
- name: Populate auth file | |
run: 'echo "${{ secrets.SALESFORCE_AUTH_URL }}" > ./SALESFORCE_AUTH_URL.txt' | |
- name: Verify Salesforce CLI installation | |
run: | | |
& "C:\Program Files\Salesforce CLI\bin\sfdx" --version | |
& "C:\Program Files\Salesforce CLI\bin\sfdx" plugins --core | |
shell: pwsh | |
- name: Authenticate Dev Hub | |
run: 'node_modules/sfdx-cli/bin/run force:auth:sfdxurl:store -f ./SALESFORCE_AUTH_URL.txt -a devhub -d' | |
- name: Create Scratch Org | |
run: node_modules/sfdx-cli/bin/run force:org:create --targetdevhubusername devhub --setdefaultusername --definitionfile config/project-scratch-def.json --setalias ciorg --durationdays 1 | |
- name: Deploy source | |
run: node_modules/sfdx-cli/bin/run force:source:push | |
- name: Run Apex tests | |
run: node_modules/sfdx-cli/bin/run force:apex:test:run --codecoverage --resultformat human -d ./ | |
- name: Upload code coverage for Apex to Codecov.io | |
uses: codecov/codecov-action@v2 | |
with: | |
flags: Apex | |
- name: Delete Scratch Org | |
run: node_modules/sfdx-cli/bin/run force:org:delete --noprompt |