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 27ba7d1 commit 4162d3aCopy full SHA for 4162d3a
.github/workflows/static-github-page.yml
@@ -22,6 +22,26 @@ concurrency:
22
cancel-in-progress: false
23
24
jobs:
25
+ test:
26
+ runs-on: ubuntu-latest
27
+
28
+ steps:
29
+ - name: Checkout Repository
30
+ uses: actions/checkout@v4
31
32
+ - name: Setup Node.js
33
+ uses: actions/setup-node@v4
34
+ with:
35
+ node-version: '20.x'
36
37
+ - name: Install dependencies
38
+ run: npm install
39
40
+ - name: Run Sanity Tests
41
+ run: |
42
+ npm run test:sanity
43
+ env:
44
+ CI: true
45
# Single deploy job since we're just deploying
46
deploy:
47
environment:
0 commit comments