diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..0bef691b --- /dev/null +++ b/.github/CODEOWNERS @@ -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 \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 120f4b2b..97b3cf1c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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