Skip to content

Commit 4162d3a

Browse files
Modified workflow for github page
1 parent 27ba7d1 commit 4162d3a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/static-github-page.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,26 @@ concurrency:
2222
cancel-in-progress: false
2323

2424
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
2545
# Single deploy job since we're just deploying
2646
deploy:
2747
environment:

0 commit comments

Comments
 (0)