diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index fb98c79..135861f 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -21,6 +21,11 @@ runs: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} ${{ runner.os }}-yarn- + - name: Install global dependencies + if: steps.yarn-cache.outputs.cache-hit != 'true' + run: yarn global add nuxt + shell: bash + - name: Install dependencies if: steps.yarn-cache.outputs.cache-hit != 'true' run: yarn install --immutable diff --git a/turbo.json b/turbo.json index 9b980ec..672db28 100644 --- a/turbo.json +++ b/turbo.json @@ -37,7 +37,7 @@ "dependsOn": ["core#build", "webpack#build"] }, "nuxt#build": { - "dependsOn": ["core#build"] + "dependsOn": ["core#build", "vue#build"] }, "native#build": {