From 5d354a328d84c5be1c487e7d8d7fd3c5e86e20bb Mon Sep 17 00:00:00 2001 From: Mehmet Erim <34455572+mehmet-erim@users.noreply.github.com> Date: Tue, 12 Nov 2019 19:49:55 +0300 Subject: [PATCH] Update angular.yml --- .github/workflows/angular.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml index dcdaf1d7da..0bf65a728f 100644 --- a/.github/workflows/angular.yml +++ b/.github/workflows/angular.yml @@ -13,8 +13,25 @@ on: - master - dev jobs: + install: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v1 + - uses: borales/actions-yarn@v2.0.0 + with: + node-version: '10.x' + - run: | + yarn + yarn global add symlink + working-directory: npm/ng-packs build: + needs: [install] runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 - - run: pwd + - uses: borales/actions-yarn@v2.0.0 + with: + node-version: '10.x' + - run: | + symlink copy --angular --packages @abp/ng.core --sync-build + working-directory: npm/ng-packs