Skip to content

Commit fda736b

Browse files
committed
chore: Update CI workflow to include build step
1 parent d25102e commit fda736b

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/ci.yaml

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
name: Build and Test
22

33
on:
4-
pull_request:
5-
branches:
6-
- v4
74
push:
85
branches:
9-
- v4
6+
- main
7+
workflow_dispatch:
108

119
jobs:
1210
build-and-test:
@@ -69,3 +67,16 @@ jobs:
6967
version: ${{ env.PACKAGE_VERSION }}
7068
git_commit_sha: ${{ github.sha }}
7169
git_tag_prefix: "v"
70+
71+
build:
72+
runs-on: ubuntu-latest
73+
steps:
74+
- uses: actions/checkout@v4
75+
with:
76+
fetch-depth: 0
77+
- name: Setup Node
78+
uses: actions/setup-node@v4
79+
with:
80+
node-version: 18
81+
- name: Build
82+
run: npx -y quartz build --bundleInfo

0 commit comments

Comments
 (0)