github/workflows: fix build step to include dependencies as well

This commit is contained in:
Patrik Oldsberg
2020-05-18 12:10:56 +02:00
parent 5da07d5bbf
commit 74d25d1550
+2 -1
View File
@@ -64,7 +64,8 @@ jobs:
- name: build changed packages
if: ${{ steps.yarn-lock.outcome == 'success' }}
run: yarn lerna -- run build --since origin/master
# Need to build all dependencies as well to be able to run tests later
run: yarn lerna -- run build --since origin/master --include-dependencies
- name: build all packages
if: ${{ steps.yarn-lock.outcome == 'failure' }}