feat: Add asset loading functionality and related tests for improved … #623
This file contains hidden or 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: Build PepperDash Essentials | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| runTests: | |
| uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-run-tests.yml@main | |
| secrets: inherit | |
| getVersion: | |
| uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-getversion.yml@main | |
| secrets: inherit | |
| needs: runTests | |
| build-4Series: | |
| uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-4Series-builds.yml@main | |
| secrets: inherit | |
| needs: getVersion | |
| if: needs.getVersion.outputs.newVersion == 'true' | |
| with: | |
| newVersion: ${{ needs.getVersion.outputs.newVersion }} | |
| version: ${{ needs.getVersion.outputs.version }} | |
| tag: ${{ needs.getVersion.outputs.tag }} | |
| channel: ${{ needs.getVersion.outputs.channel }} | |
| bypassPackageCheck: true | |
| devToolsVersion: ${{ vars.ESSENTIALSDEVTOOLSVERSION }} |