-
Notifications
You must be signed in to change notification settings - Fork 214
28 lines (24 loc) · 1.13 KB
/
deploy.and.test.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
name: Create a Scratch Org, Push Source and Run Apex Tests
on:
push:
pull_request_target:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 #Check out this repo
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Install SFDX CLI and authorize DevHub
uses: apex-enterprise-patterns/setup-sfdx@v2-beta-1 #We're using a fork of https://github.com/sfdx-actions/setup-sfdx for safety
with:
sf-auth-url: ${{ secrets.DEVHUB_SFDXURL }}
- run: sf config set target-dev-hub SFDX-ENV --global #Even though the setup-sfdx action uses --setdefaultdevhubusername, it doesn't seem to stick since it uses --setdefaultusername so we brute force it here
- run: sf org create scratch --definition-file config/project-scratch-def.json --set-default --duration-days 1 --no-track-source
- run: sf project deploy start
- run: sf apex run test --wait 5
- name: Destroy scratch org
run: sf org delete scratch --no-prompt
if: always()