We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4c38a5 commit 5e48a54Copy full SHA for 5e48a54
.github/workflows/ci.yml
.github/workflows/release-please.yml
@@ -34,13 +34,17 @@ jobs:
34
if: ${{ steps.release.outputs.release_created }}
35
run: npm ci
36
37
+ # Run tests before building/publishing
38
+ - name: Test
39
+ if: ${{ steps.release.outputs.release_created }}
40
+ run: npm test
41
+
42
# Build the package if a release was created
43
- name: Build
44
45
run: npm run build
46
- # Publish to npm (commented out until you're ready)
- # Uncomment when ready to publish to npm and add NPM_TOKEN secret
47
+ # Publish to npm
48
- name: Publish to npm
49
50
run: npm publish
0 commit comments