Skip to content

Commit 4799aae

Browse files
committed
fix
1 parent 559202e commit 4799aae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/extensions-build-test.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ jobs:
8181
echo "Final extensions to build: ${PKGS_TO_BUILD[*]}"
8282
8383
test-build:
84-
if: ${{ jobs.find-extensions.outputs.all_skipped != 'true' }}
8584
name: Test build ${{ matrix.folder }}
8685
runs-on: ubuntu-latest
8786
needs: find-extensions
@@ -95,19 +94,23 @@ jobs:
9594

9695
steps:
9796
- name: Checkout Repository
97+
if: ${{ jobs.find-extensions.outputs.all_skipped != 'true' }}
9898
uses: actions/checkout@v5
9999
with:
100100
fetch-depth: 0
101101

102102
- name: Install Node
103+
if: ${{ jobs.find-extensions.outputs.all_skipped != 'true' }}
103104
uses: actions/setup-node@v5
104105
with:
105106
node-version-file: .nvmrc
106107
cache: yarn
107108

108109
- name: Install Dependencies
110+
if: ${{ jobs.find-extensions.outputs.all_skipped != 'true' }}
109111
shell: bash
110112
run: yarn install
111113

112114
- name: "Build extension: ${{ matrix.folder }}"
115+
if: ${{ jobs.find-extensions.outputs.all_skipped != 'true' }}
113116
run: yarn build-pkg ${{ matrix.folder }}

0 commit comments

Comments
 (0)