Skip to content

Commit 13848a5

Browse files
authored
fix: npm run build with pipeline (#162)
Signed-off-by: Yash Khare <[email protected]>
1 parent 2dbad27 commit 13848a5

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.github/workflows/build.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build Workflow
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "**"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout Code
14+
uses: actions/checkout@v2
15+
with:
16+
submodules: 'recursive'
17+
18+
- name: Install Dependencies
19+
run: npm install
20+
21+
- name: Build Next.js App
22+
run: npm run build

components/utils/common.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@ export const socialLinks: SocialLink[] = [
118118
},
119119
{
120120
href: 'https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg',
121-
icon: <YouTubeIcon/>,
121+
icon: <YoutubeIcon/>,
122122
title: 'YouTube',
123123
description:'Learn with Keploy team and its community videos'
124124
},
125125
{
126126
href: 'https://github.com/keploy/keploy',
127-
icon: <GitHubIcon/>,
127+
icon: <GithubIcon/>,
128128
title: 'GitHub',
129129
description:'Contribute code to Keploy or report a bug'
130130

0 commit comments

Comments
 (0)