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.
2 parents 37376cb + 75a3486 commit d97ed9bCopy full SHA for d97ed9b
.github/workflows/deploy.yml
@@ -21,7 +21,7 @@ jobs:
21
- name: Install dependencies
22
run: npm ci
23
- name: Build website
24
- run: npm build
+ run: npm run build
25
26
- name: Upload Build Artifact
27
uses: actions/upload-pages-artifact@v3
.github/workflows/test-deploy.yml
@@ -0,0 +1,24 @@
1
+name: Test deployment
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ test-deploy:
10
+ name: Test deployment
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
+ - uses: actions/setup-node@v4
17
18
+ node-version: 18
19
+ cache: npm
20
+ - name: Install dependencies
+ run: npm ci
+ - name: Test build website
0 commit comments