Skip to content

Commit 7baaf6b

Browse files
committed
Add build step to GitHub Actions workflows for release and test jobs
1 parent 18eee69 commit 7baaf6b

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424
run: |
2525
pnpm install
2626
27+
- name: Build
28+
run: |
29+
pnpm run build
30+
2731
- name: Create Release
2832
env:
2933
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ jobs:
2323
run: |
2424
pnpm install
2525
26+
- name: Build
27+
run: |
28+
pnpm run build
29+
30+
2631
- name: Test
2732
run: |
2833
pnpm run test

0 commit comments

Comments
 (0)