We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b7a19a commit 527fc15Copy full SHA for 527fc15
1 file changed
.github/workflows/static.yml
@@ -31,12 +31,25 @@ jobs:
31
steps:
32
- name: Checkout
33
uses: actions/checkout@v4
34
+
35
+ - name: Setup Node.js
36
+ uses: actions/setup-node@v2
37
+ with:
38
+ node-version: '20'
39
40
+ - name: Install dependencies and build
41
+ run: |
42
+ npm install
43
+ npm run build
44
45
- name: Setup Pages
46
uses: actions/configure-pages@v5
47
48
- name: Upload artifact
49
uses: actions/upload-pages-artifact@v3
50
with:
51
path: 'dist/'
52
53
- name: Deploy to GitHub Pages
54
id: deployment
55
uses: actions/deploy-pages@v4
0 commit comments