From e43767ed82041589a05ece40fceb8b2d800d23d2 Mon Sep 17 00:00:00 2001 From: Shwetha Radhakrishna Date: Wed, 3 Nov 2021 16:14:00 -0500 Subject: [PATCH] fix: node setup wf step (#705) --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9c84a59e41..faa618cfbd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,13 +26,13 @@ jobs: - name: Build and Push image run: make docker-build && make docker-push + - run: npm install - name: Set up Node uses: actions/setup-node@v2 with: node-version: 8 registry-url: 'https://registry.npmsjs.org' - - run: npm install - name: Publish to NPM env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}