ci(deapp): add gitHub workflows for publishing and testing docker image #6
Workflow file for this run
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: Test Docker Image | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - '*' # Trigger on any pull request | ||
| paths: | ||
| - 'packages/protected-data-delivery-dapp/**' # Trigger only when changes are made to the dapp | ||
| jobs: | ||
| build-test: | ||
| uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/docker-build.yml@fix/docker/types | ||
|
Check failure on line 12 in .github/workflows/dapp-test.yml
|
||
| with: | ||
| image-name: 'protected-data-delivery-dapp' | ||
| image-tag: ${{ github.sha }} | ||
| push: false | ||
| dockerfile: 'packages/protected-data-delivery-dapp/Dockerfile' | ||
| context: 'packages/protected-data-delivery-dapp' | ||