Skip to content

Commit 325ab2b

Browse files
committed
ci: fix order
1 parent d35f41e commit 325ab2b

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
- name: Build 🔧
2727
run: npm run build
2828

29-
- name: Test 🧪
30-
run: npm run test:ci
31-
3229
- name: Build Docs 📖
3330
run: npm run docs
3431

32+
- name: Test 🧪
33+
run: npm run test:ci
34+
3535
- name: Create Coverage Badge 🏷️
3636
run: npx coverage-badge-svg
3737

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Node.js Package
22

33
on:
44
push:
5-
tags: "v**"
5+
tags:
6+
- "v**"
67
workflow_dispatch:
78

89
jobs:

0 commit comments

Comments
 (0)