Skip to content

Commit

Permalink
PDT24-18 | Github Action Integration (#8)
Browse files Browse the repository at this point in the history
* 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
noxiousghost authored Dec 19, 2024
1 parent 0b467e1 commit e48dc97
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
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

0 comments on commit e48dc97

Please sign in to comment.