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 72058fa commit a5a4bc3Copy full SHA for a5a4bc3
.github/workflows/main.yml
@@ -1,6 +1,6 @@
1
name: Node CI
2
3
-on: [push, pull_request]
+on: [push]
4
5
jobs:
6
build:
@@ -27,7 +27,7 @@ jobs:
27
npm run docs:build
28
env:
29
CI: true
30
- - name: Coveralls
+ - name: coveralls
31
uses: coverallsapp/github-action@master
32
with:
33
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -44,8 +44,8 @@ jobs:
44
45
# publish pre-release if on PR branch
46
- name: release PR version
47
- if: ${{ startsWith(github.ref, 'refs/pull/') }}
48
- run: npx semantic-release -- --debug
+ if: ${{ github.ref != 'master' }}
+ run: npx semantic-release --debug
49
50
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments