From bbeb556a48b456c7edeff91588a2b4c908978c4f Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Tue, 15 Oct 2019 08:57:39 +0100 Subject: [PATCH] Lower version to 10 in npmpublish --- .github/workflows/npmpublish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index d000c9f..152b894 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -15,8 +15,8 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 12 - - run: npm install + node-version: 10 + - run: npm ci - run: npm run bundlesize - run: npm run lint - run: npm test @@ -28,7 +28,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 10 registry-url: https://registry.npmjs.org/ - run: npm publish env: @@ -41,9 +41,9 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: 10 registry-url: https://npm.pkg.github.com/ - scope: '@your-github-username' + scope: '@jshjohnson' - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}