Skip to content

Commit f7f9c66

Browse files
committed
decouple build steps
1 parent d304adf commit f7f9c66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
- name: Clone repository
1414
uses: actions/checkout@v3
1515

16-
- name: Build package
16+
- name: Setup Node.js
1717
uses: actions/setup-node@v4
1818
with:
1919
node-version: 20
20-
run: |
21-
npm install
22-
npm run build
20+
21+
- run: npm install
22+
- run: npm build
2323

2424
- name: Publish to NPM
2525
run: |

0 commit comments

Comments
 (0)