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 57c2345 commit 82b392fCopy full SHA for 82b392f
.github/workflows/build.yml
@@ -20,7 +20,15 @@ jobs:
20
uses: actions/setup-node@v2
21
with:
22
node-version: ${{ matrix.node-version }}
23
- - run: npm install
24
- - run: npm test
+ registry-url: 'https://registry.npmjs.org'
+ - name: Install dependencies
25
+ run: npm install
26
+ - name: Testing
27
+ run: npm test
28
- name: Before deploy
29
run: npm run docs
30
+ - name: Publish
31
+ if: ${{ matrix.node-version == '12.16.3' }}
32
+ run: npm publish
33
+ env:
34
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments