-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
21 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |