Skip to content

Commit

Permalink
Merge pull request #34 from ms-club-sliit/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
senuravihanjayadeva authored Dec 2, 2021
2 parents a844805 + 98e208d commit 525d245
Show file tree
Hide file tree
Showing 22 changed files with 11,530 additions and 13,096 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
REACT_APP_BACKEND_URL = https://msclubsliit-backend.herokuapp.com
12 changes: 12 additions & 0 deletions .github/templates/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## Issue/ Feature Request :bricks:
⚠️ *You must fill all the required fields to place you issue correctly.*
| Fields | Description | Requirement |
| ------ | ----------- | ------------------ |
| Name | Name of the feature/ issue. | ✔️ |
| About | A clear description about the feature or issue. | ✔️ |
| Labels | Appropriate labels for the feature or issue. | ✔️ |
| Assignees | Who is going to take the feature or issue ||
| Project | Appropriate project that feature or issue belongs to | ✔️ |

**Required** - ✔️ <br>
**Optional** - ❌
9 changes: 9 additions & 0 deletions .github/templates/PR_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Pull Request(PR) Template :octocat:
**Check following steps are fulfilled before creating the PR** <br>
📝 Explain what are the changes that you have done to the codebase in the PR description<br>
✔️ Assign more than 2 reviewers to the PR. <br>
✔️ Add relevent labes to the PR <br>
(⚠️ Must to have one of the these labels. **high-priority**, **medium-priority**, **low-priority**)<br>
✔️ Select the project. **(MS Club Web Server)** <br>
✔️ If there is any issue created that related to the PR, please link link it to the PR.

23 changes: 12 additions & 11 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,26 @@
name: MS CLUB SLIIT Node JS CI

on:
push:
branches: [master, development]
pull_request:
branches: [ master ]
branches: [master, development]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm ci
- run: npm run build
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm install
- run: npm ci
- run: npm run build
Loading

0 comments on commit 525d245

Please sign in to comment.