Skip to content

Commit

Permalink
chore: automation test for core bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales committed May 29, 2024
1 parent 64c3d16 commit 1892d0d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches-ignore: [main]
workflow_dispatch:
workflow_call:

jobs:
linux-unit-tests:
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/testWithCoreBundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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: ./.github/workflows/test.yml

0 comments on commit 1892d0d

Please sign in to comment.