Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
aryasoni98 committed May 12, 2024
1 parent c919c3f commit 9a0c986
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Bug report
description: Create a bug report to help us improve Keploy
title: '[bug]: '
labels: [bug, infraboard, xerocodee]
labels: [bug, infraboard, xerocodee, gssoc24]
body:
- type: markdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature-request.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Feature request
description: Suggest a feature to improve InfraBoard
title: '[feature]: '
labels: [feature, infraboard, xerocodee]
labels: [feature, infraboard, xerocodee, gssoc24]
body:
- type: markdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/figma-design.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Figma Design Submission
description: Submit a design file for review
title: '[Design]: '
labels: [design, figma, infraboard, xerocodee]
labels: [design, figma, infraboard, xerocodee, gssoc24]
body:
- type: markdown
attributes:
Expand Down
17 changes: 11 additions & 6 deletions .github/workflows/build.yml → .github/workflows/code-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,30 @@ permissions:
checks: write
pull-requests: write

env:
VITE_INTERNAL: true

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.x
- run: npm install
- run: npx prettier --check .
- run: npx prettier --write .

build:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: actions/cache@v4
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down

0 comments on commit 9a0c986

Please sign in to comment.