Skip compilation if the cache is hit

This commit is contained in:
Alexandru Dima
2020-12-14 10:08:36 +01:00
parent 36b48f4984
commit 707afc26d6

View File

@@ -90,12 +90,15 @@ jobs:
key: cacheCompiledCode-${{ env.GITHUB_SHA }}
- name: Compile Core
if: ${{ steps.cacheCompiledCode.outputs.cache-hit != 'true' }}
run: yarn gulp compile-build
- name: Compile Extensions
if: ${{ steps.cacheCompiledCode.outputs.cache-hit != 'true' }}
run: yarn gulp compile-extensions-build
- name: Minify VS Code
if: ${{ steps.cacheCompiledCode.outputs.cache-hit != 'true' }}
run: yarn gulp minify-vscode
build-linux-unit-tests: