-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added verify workflow and the PULL_REQUEST_TEMPLATE
- Loading branch information
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
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,16 @@ | ||
<!--- | ||
😊 Thank you for contributing to ManasAI. | ||
--> | ||
|
||
# PR | ||
|
||
## What is in the PR? | ||
|
||
<!--- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> | ||
|
||
## Type of change | ||
|
||
<!--- Feel free to add/remove/update options that are not relevant to current PR --> | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) |
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,29 @@ | ||
name: Verify | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
name: Verify | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: 🌍 Setup Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: 📦 Install dependencies | ||
run: | | ||
npm install -g pnpm | ||
pnpm install | ||
- name: 🧹 Lint | ||
run: pnpm lint | ||
|
||
- name: 🔨 Build | ||
run: pnpm build |
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