Skip to content

Commit 33519f6

Browse files
committed
Add build to github workflow
1 parent 92f8f84 commit 33519f6

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,19 @@ jobs:
1818
id: checkout
1919
uses: actions/checkout@v4
2020

21+
- name: Setup node
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: ">=22"
25+
26+
- name: Install dependencies
27+
id: install
28+
run: npm install
29+
30+
- name: Build
31+
id: build
32+
run: npm run build
33+
2134
- name: Upload static files as artifact
2235
id: deployment
2336
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)