We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 625950b commit ed3b1d0Copy full SHA for ed3b1d0
.github/workflows/build.yml
@@ -19,10 +19,14 @@ jobs:
19
NODE_VER: 14.17.6
20
steps:
21
- uses: actions/checkout@v2
22
+
23
+ # Setup .npmrc file to publish to npm
24
+ # https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
25
- name: Use Node.js
- uses: actions/setup-node@v1
26
+ uses: actions/setup-node@v2
27
with:
28
node-version: ${{ env.NODE_VER }}
29
+ registry-url: 'https://registry.npmjs.org'
30
31
- run: npm ci
32
env:
0 commit comments