Skip to content

Commit

Permalink
(add) : codeowners
Browse files Browse the repository at this point in the history
  • Loading branch information
sohit-dg authored Oct 7, 2024
1 parent e798672 commit f3c233d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 21 deletions.
7 changes: 7 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Frontend related files
*.js @sohit-dg
*.jsx @sohit-dg
*.ts @sohit-dg
*.tsx @sohit-dg
*.css @sohit-dg
*.scss @sohit-dg
42 changes: 21 additions & 21 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: Build on Pull Request
# name: Build on Pull Request

on:
pull_request:
branches:
- dev
# on:
# pull_request:
# branches:
# - dev

jobs:
build:
runs-on: ubuntu-latest
# jobs:
# build:
# runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
# steps:
# - name: Checkout code
# uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: "18"

- name: Install dependencies
run: npm install -f
# - name: Install dependencies
# run: npm install -f

- name: Build the project
env:
CI: false
run: npm run build
# - name: Build the project
# env:
# CI: false
# run: npm run build

0 comments on commit f3c233d

Please sign in to comment.