Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit ce39900

Browse files
Build test
1 parent 7531819 commit ce39900

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/build-test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#the point of this file is to minimize errors when deploying
2+
name: Build Test
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build-test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout Repo
12+
uses: actions/checkout@v3
13+
- name: Test the build (and run)
14+
run: |
15+
'npm i && npm run build'

index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ if (numCPUs > 0 && cluster.isPrimary) {
153153
url.pathname.includes('/uv') ||
154154
url.pathname.includes('/aero') ||
155155
url.pathname.includes('/osana') ||
156-
url.pathname.includes('/dip')
156+
url.pathname.includes('/dip') ||
157+
url.pathname.includes('/rh')
157158
) {
158159
return res.end(educationWebsite);
159160
} else {

0 commit comments

Comments
 (0)