Skip to content

Commit dd9bbdc

Browse files
committed
ci: don't build project in integration test workflow during release
Regression introduced in 4571be3; we skip all other steps during the integration test workflow (git checkout, etc.), so the build step will always fail.
1 parent 6967f8e commit dd9bbdc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/integration-tests.yml

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676

7777
- name: Build project
7878
run: npm run build
79+
if: '${{!steps.release-check.outputs.IS_RELEASE}}'
7980

8081
- name: Prepare tests
8182
run: npm run test:init
@@ -186,6 +187,7 @@ jobs:
186187

187188
- name: Build project
188189
run: npm run build
190+
if: '${{!steps.release-check.outputs.IS_RELEASE}}'
189191

190192
- name: Prepare tests
191193
run: npm run test:init

0 commit comments

Comments
 (0)