Skip to content

Commit f74f985

Browse files
committed
Enable testing, linting, style, on release.
1 parent 420c84a commit f74f985

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,19 @@ jobs:
3030
- run: npm ci
3131
- name: build
3232
run: npm run build
33-
# - name: test
34-
# if: ${{ always() }}
35-
# run: npm run test
36-
# - name: lint
37-
# if: ${{ always() }}
38-
# run: npm run lint
39-
# - name: style
40-
# if: ${{ always() }}
41-
# run: npm run format:check
33+
- name: test
34+
if: ${{ always() }}
35+
run: npm run test
36+
- name: lint
37+
if: ${{ always() }}
38+
run: npm run lint
39+
- name: style
40+
if: ${{ always() }}
41+
run: npm run format:check
4242
- name: npm auth
4343
run: npm set "//registry.npmjs.org/:_authToken" ${{ env.NPM_TOKEN }}
4444
- name: perform release
4545
run: |
4646
npm run release -- \
4747
${{ github.event.inputs.version }} \
48-
--ci \
49-
--dry-run
48+
--ci

0 commit comments

Comments
 (0)