We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f8f84 commit 33519f6Copy full SHA for 33519f6
1 file changed
.github/workflows/deploy.yaml
@@ -18,6 +18,19 @@ jobs:
18
id: checkout
19
uses: actions/checkout@v4
20
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
34
- name: Upload static files as artifact
35
id: deployment
36
uses: actions/upload-pages-artifact@v3
0 commit comments