File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 92
92
93
93
- name : Setup Kind
94
94
uses : helm/kind-action@99576bfa6ddf9a8e612d83b513da5a75875caced # v1.9.0
95
- if : ${{ inputs.enable-e2e-tests && !cancelled() && !failure() }}
95
+ if : ${{ runner.os == 'linux' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
96
96
with :
97
97
install_only : true
98
98
node_image : kindest/node:v1.27.3@sha256:3966ac761ae0136263ffdb6cfd4db23ef8a83cba8a463690e98317add2c9ba72
@@ -122,7 +122,7 @@ jobs:
122
122
123
123
- name : Publish Unit Test Report
124
124
uses : EnricoMi/publish-unit-test-result-action@f355d34d53ad4e7f506f699478db2dd71da9de5f # v2.15.1
125
- if : ${{ inputs.enable-unit-tests && steps.npm-deps.conclusion == 'success' && !cancelled() }}
125
+ if : ${{ runner.os == 'linux' && inputs.enable-unit-tests && steps.npm-deps.conclusion == 'success' && !cancelled() }}
126
126
with :
127
127
check_name : ' Unit Test Results'
128
128
files : " junit.xml"
@@ -139,7 +139,7 @@ jobs:
139
139
run : docker image pull kindest/node:v1.27.3@sha256:3966ac761ae0136263ffdb6cfd4db23ef8a83cba8a463690e98317add2c9ba72
140
140
141
141
- name : Setup E2E Tests
142
- if : ${{ inputs.enable-e2e-tests && !cancelled() && !failure() }}
142
+ if : ${{ runner.os == 'linux' && inputs.enable-e2e-tests && !cancelled() && !failure() }}
143
143
run : |
144
144
npm link
145
145
./test/e2e/setup-e2e.sh
You can’t perform that action at this time.
0 commit comments