-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PDT24-18 | Github Action Integration (#8)
* feat(workflow): add pull request template * feat(workflow): add github actions for checking linting * chore(pr_template): add base url for jira issues
- Loading branch information
1 parent
0b467e1
commit e48dc97
Showing
2 changed files
with
36 additions
and
0 deletions.
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,17 @@ | ||
### Tasks | ||
|
||
- [Task](https://outsidetech.atlassian.net/browse/PDT24-) | ||
|
||
### Changes | ||
|
||
- [ ] ... | ||
|
||
### Testing Criteria | ||
|
||
- [ ] Test Criteria (explain how you did testing for this PR mentioning all the cases you tested for) [Loom](video link | ||
going through the test criteria) | ||
|
||
### Notes | ||
|
||
- Dependencies on other PRs, any required changes in config/setup to test behavior, or links to external documents, | ||
threads, etc -- if any of them are required |
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,19 @@ | ||
name: Lint | ||
on: push | ||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: yarn | ||
cache-dependency-path: './yarn.lock' | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Run linters | ||
run: yarn lint && yarn format |