Test and Release #1653
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: Test and Release | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
schedule: | |
- cron: "0 4 * * 5" # every Friday 04:00 | |
jobs: | |
default: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
- name: Install dependencies | |
run: | | |
yarn install | |
yarn global add @salesforce/cli@${SF_CLI_VERSION:-"latest"} | |
- name: Run unit tests | |
run: yarn test | |
- name: Authenticate DevHub and create scratch org | |
env: | |
SFDX_AUTH_URL_DEVHUB: ${{ secrets.SFDX_AUTH_URL_DEVHUB }} | |
run: | | |
sf org login sfdx-url -d -a devhub -f <(echo "${SFDX_AUTH_URL_DEVHUB}") | |
yarn develop | |
- name: Run end-to-end tests | |
run: yarn test:e2e | |
- name: Delete scratch org | |
if: always() | |
run: | | |
sf org delete scratch -p | |
- name: Release package | |
run: npx semantic-release -b main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |