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 420c84a commit f74f985Copy full SHA for f74f985
.github/workflows/release.yml
@@ -30,20 +30,19 @@ jobs:
30
- run: npm ci
31
- name: build
32
run: npm run build
33
- # - name: test
34
- # if: ${{ always() }}
35
- # run: npm run test
36
- # - name: lint
37
38
- # run: npm run lint
39
- # - name: style
40
41
- # run: npm run format:check
+ - name: test
+ if: ${{ always() }}
+ run: npm run test
+ - name: lint
+ run: npm run lint
+ - name: style
+ run: npm run format:check
42
- name: npm auth
43
run: npm set "//registry.npmjs.org/:_authToken" ${{ env.NPM_TOKEN }}
44
- name: perform release
45
run: |
46
npm run release -- \
47
${{ github.event.inputs.version }} \
48
- --ci \
49
- --dry-run
+ --ci
0 commit comments