From 87a01d8204e8f0fea77c7b484e16dc03630953f6 Mon Sep 17 00:00:00 2001 From: Caralyn Reisle Date: Thu, 17 Dec 2020 16:23:23 -0800 Subject: [PATCH] Add peer install to workflow --- .github/workflows/npm-publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 179dc84..73a26e7 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,6 +16,7 @@ jobs: with: node-version: 12 - run: npm ci + - run: npm install @bcgsc-pori/graphkb-parser - run: npm test publish-npm: @@ -28,6 +29,7 @@ jobs: node-version: 12 registry-url: https://registry.npmjs.org/ - run: npm ci + - run: npm install @bcgsc-pori/graphkb-parser - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.npm_token}}