From 66b2d9350dddd8dcd5ce60ef395b3ebee129c763 Mon Sep 17 00:00:00 2001 From: Sumanth Chinthagunta Date: Sat, 7 Sep 2019 19:18:05 -0700 Subject: [PATCH] fix(actions): updating github actions with NPM_AUTH_TOKEN --- .github/workflows/push.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 436b8166a..42e27c657 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -14,8 +14,12 @@ jobs: # run: npm install -g yarn - name: Setup Angular CLI run: yarn global add @angular/cli + env: + NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Install Dependencies run: yarn install + env: + NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Linting run: ng lint ngx-utils - name: Testing