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 9dceb65 commit 534f6baCopy full SHA for 534f6ba
.github/workflows/ci.yml
@@ -18,4 +18,19 @@ jobs:
18
node-version: ${{ matrix.node-version }}
19
- run: npm ci
20
- run: npm run validate
21
-
+ - run: npm run build
22
+ dry-run:
23
+ runs-on: ubuntu-latest
24
+ steps:
25
+ - name: Checkout
26
+ uses: actions/checkout@v4
27
+ - name: Setup node
28
+ uses: actions/setup-node@v3
29
+ - run: npm ci
30
+ - name: Build
31
+ run: npm run build
32
+ - name: Release
33
+ env:
34
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
36
+ run: npm run release -- --dry-run
package.json
@@ -107,5 +107,10 @@
107
"commitizen": {
108
"path": "cz-conventional-changelog"
109
}
110
+ },
111
+ "release": {
112
+ "branches": [
113
+ "main"
114
+ ]
115
116
0 commit comments