File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 6767 echo "version_changed=true" >> $GITHUB_OUTPUT
6868 fi
6969
70- test-contract-provider :
70+ test-contract :
7171 name : " Test contracts (provider)"
7272 needs : check-event-schemas-version-change
7373 if : needs.check-event-schemas-version-change.outputs.version_changed == 'true'
@@ -85,15 +85,15 @@ jobs:
8585 - name : " Install dependencies"
8686 run : npm ci
8787 - name : " Run provider contract tests"
88- run : make test-contract-provider
88+ run : make test-contract
8989 env :
9090 GITHUB_PACKAGES_TOKEN : ${{ secrets.GITHUB_TOKEN }}
9191
9292 publish-event-schemas :
9393 name : Publish event schemas package to GitHub package registry
9494 needs :
9595 - check-event-schemas-version-change
96- - test-contract-provider
96+ - test-contract
9797 if : needs.check-event-schemas-version-change.outputs.version_changed == 'true'
9898 runs-on : ubuntu-latest
9999 permissions :
Original file line number Diff line number Diff line change @@ -71,10 +71,10 @@ test: # Run all the test tasks @Testing
7171_test :
7272 set -e
7373 script=" ./scripts/tests/${name} .sh"
74- if [ -e " $$ {script}" ]; then
75- exec $$ {script}
76- else
77- echo " make test-${name} not implemented: $$ {script} not found" >&2
74+ if [ -e " $$ {script}" ]; then \
75+ exec $$ {script}; \
76+ else \
77+ echo " make test-${name} not implemented: $$ {script} not found" >&2 ; \
7878 fi
7979
8080${VERBOSE}.SILENT : \
You can’t perform that action at this time.
0 commit comments