File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -118,13 +118,13 @@ export const socialLinks: SocialLink[] = [
118
118
} ,
119
119
{
120
120
href : 'https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg' ,
121
- icon : < YouTubeIcon /> ,
121
+ icon : < YoutubeIcon /> ,
122
122
title : 'YouTube' ,
123
123
description :'Learn with Keploy team and its community videos'
124
124
} ,
125
125
{
126
126
href : 'https://github.com/keploy/keploy' ,
127
- icon : < GitHubIcon /> ,
127
+ icon : < GithubIcon /> ,
128
128
title : 'GitHub' ,
129
129
description :'Contribute code to Keploy or report a bug'
130
130
You can’t perform that action at this time.
0 commit comments