Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: automation test with core bundle #371

Merged
merged 11 commits into from
May 30, 2024
2 changes: 1 addition & 1 deletion .github/workflows/testCommitExceptMain.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: unit tests
name: Unit tests
on:
push:
branches-ignore: [main]
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/testWithCoreBundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test With Core Bunde
on:
push:
branches-ignore: [main]
workflow_dispatch:
inputs:
branch:
description: 'Set the branch to test core bundle'
type: string
required: false
default: main

jobs:
build:
name: Call build workflow
uses: forcedotcom/bundle-publish-scripts/.github/workflows/build.yml@main
with:
branch: ${{ github.ref_name || inputs.branch }}
tests:
name: Call tests workflow
uses: salesforcecli/github-workflows/.github/workflows/unitTest.yml@main

Loading