Skip to content

Commit

Permalink
fix: npm run build with pipeline (#162)
Browse files Browse the repository at this point in the history
Signed-off-by: Yash Khare <[email protected]>
  • Loading branch information
khareyash05 authored Dec 24, 2024
1 parent 2dbad27 commit 13848a5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Workflow

on:
pull_request:
branches:
- "**"

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
submodules: 'recursive'

- name: Install Dependencies
run: npm install

- name: Build Next.js App
run: npm run build
4 changes: 2 additions & 2 deletions components/utils/common.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ export const socialLinks: SocialLink[] = [
},
{
href: 'https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg',
icon: <YouTubeIcon/>,
icon: <YoutubeIcon/>,
title: 'YouTube',
description:'Learn with Keploy team and its community videos'
},
{
href: 'https://github.com/keploy/keploy',
icon: <GitHubIcon/>,
icon: <GithubIcon/>,
title: 'GitHub',
description:'Contribute code to Keploy or report a bug'

Expand Down

0 comments on commit 13848a5

Please sign in to comment.