From 641e7e32eb7a082c1b443efaccf08d3999bc2d07 Mon Sep 17 00:00:00 2001 From: Evan Shortiss Date: Mon, 27 Jul 2020 13:13:02 +0100 Subject: [PATCH] fix: use npm install in workflow --- .github/workflows/npm-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index be9461b..9a32363 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/setup-node@v1 with: node-version: 12 - - run: npm ci + - run: npm install - run: npm test publish-npm: @@ -27,7 +27,7 @@ jobs: with: node-version: 12 registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: npm install - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.npm_token}}