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 39c6d28 commit d32e6aaCopy full SHA for d32e6aa
.github/workflows/build-and-test.yml
@@ -3,8 +3,6 @@ name: Build and test
3
on:
4
push:
5
branches: [master]
6
- pull_request:
7
- branches: [master]
8
jobs:
9
buildAndTest:
10
name: Build and test (Node.js v${{ matrix.node-version }})
@@ -19,8 +17,11 @@ jobs:
19
17
uses: actions/setup-node@v2
20
18
with:
21
node-version: ${{ matrix.node-version }}
+ registry-url: 'https://registry.npmjs.org'
22
- name: Install install dependencies
23
run: npm ci
24
- name: test
25
run: npm test
26
-
+ - run: npm publish
+ env:
27
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_SECRET_TOKEN }}
0 commit comments