We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b46a8 commit 1830a0bCopy full SHA for 1830a0b
.github/workflows/ci.yml
@@ -1,6 +1,6 @@
1
name: Continuous Integration
2
3
-on: [push, pull_request]
+on: push
4
5
jobs:
6
build:
@@ -22,5 +22,3 @@ jobs:
22
npm ci
23
npm run build
24
npm test
25
- env:
26
- CI: true
.github/workflows/release.yml
@@ -69,6 +69,11 @@ jobs:
69
name: dist
70
path: dist
71
72
+ - name: Verify tarball
73
+ run: |
74
+ PACKAGE_TARBALL=`ls *.tgz`
75
+ ./verifyReleaseTarball.sh $PACKAGE_TARBALL
76
+
77
# Check whether the release should be published. We publish only when the trigger PR is
78
# 1. merged
79
# 2. to the master branch
0 commit comments