We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e31a220 commit 0d0089cCopy full SHA for 0d0089c
.github/workflows/main.yml
@@ -0,0 +1,28 @@
1
+on: push
2
+name: Build
3
+jobs:
4
+ build:
5
+ name: Build
6
+ runs-on: ubuntu-latest
7
+
8
+ strategy:
9
+ matrix:
10
+ node-version: [20.x]
11
12
+ steps:
13
+ - name: Checkout Branch
14
+ uses: actions/checkout@v2
15
16
+ - name: Setup Node.js environment
17
+ uses: actions/[email protected]
18
+ with:
19
+ node-version: ${{ matrix.node-version }}
20
21
+ - run: npm install
22
+ - run: npm run build
23
24
+ - name: Deploy to GitHub Pages
25
+ uses: JamesIves/[email protected]
26
27
+ branch: gh-pages
28
+ folder: dist
0 commit comments