Skip to content

Commit

Permalink
Merge pull request #5 from nylas/fix-package-version
Browse files Browse the repository at this point in the history
github actions.
  • Loading branch information
LincolnRychecky authored Aug 21, 2024
2 parents c0a6b7c + 08ef4de commit 92fc4b0
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/apex-tests-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Salesforce CI

# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main

on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to run the tests on'
required: true
default: 'main'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Salesforce CLI
uses: forcedotcom/sfdx-action@v1
with:
version: latest

# 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

0 comments on commit 92fc4b0

Please sign in to comment.