We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ed07f commit c934ac5Copy full SHA for c934ac5
.github/workflows/server.yml
@@ -78,9 +78,11 @@ jobs:
78
79
- name: Tests
80
id: server_integration_tests
81
- if: ${{ matrix.disabled_on_pr != 'true' || github.event.pull_request == '' }}
+ if: ${{ !matrix.disabled_on_pr || !github.event.pull_request }}
82
run: |
83
- echo " id=${{ matrix.disabled_on_pr != 'true' || github.event.pull_request == '' }} matrix.disabled_on_pr=${{ matrix.disabled_on_pr }} github.event.pull_request=${{ github.event.pull_request }}"
+ echo id=${{ !matrix.disabled_on_pr || !github.event.pull_request }}
84
+ echo !matrix.disabled_on_pr=${{ !matrix.disabled_on_pr }}
85
+ echo !github.event.pull_request=${{ !github.event.pull_request }}
86
cd examples/server/tests
87
PORT=8888 ./tests.sh
88
0 commit comments