We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8678235 commit e4e01c6Copy full SHA for e4e01c6
1 file changed
.github/workflows/tests.yml
@@ -203,7 +203,7 @@ jobs:
203
test_e2e:
204
name: 🎯 E2E Tests
205
runs-on: ubuntu-latest
206
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
+ if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/*')
207
208
steps:
209
- name: 🧾 Checkout
@@ -220,9 +220,6 @@ jobs:
220
221
- name: 📦 Install dependencies
222
run: |
223
- curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
224
- unzip awscliv2.zip
225
- sudo ./aws/install
226
wget -O /tmp/cyclonedx "https://github.com/CycloneDX/cyclonedx-cli/releases/download/v0.27.2/cyclonedx-linux-x64"
227
sudo mv /tmp/cyclonedx /usr/local/bin/cyclonedx
228
sudo chmod +x /usr/local/bin/cyclonedx
0 commit comments