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}}