Skip to content

Commit 4bf65dd

Browse files
authored
Merge pull request #11 from Jim-Hodapp-Coaching/create_coaching_sessions_page
Create baseline coaching sessions page to build further upon.
2 parents 30108ad + 2d600ef commit 4bf65dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+6104
-52
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Bug Report
2+
description: File a bug report for refactor-platform-fe
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
- type: input
12+
id: contact
13+
attributes:
14+
label: Contact Details
15+
description: How can we get in touch with you if we need more info?
16+
placeholder: ex. [email protected]
17+
validations:
18+
required: false
19+
- type: textarea
20+
id: what-happened
21+
attributes:
22+
label: What happened?
23+
description: Describe the issue here.
24+
placeholder: Tell us what you see!
25+
value: "A bug happened!"
26+
validations:
27+
required: true
28+
- type: input
29+
id: version
30+
attributes:
31+
label: What is the version of refactor-platform-fe that you're seeing the problem on?
32+
placeholder: ex. v0.3.0
33+
validations:
34+
required: true
35+
- type: textarea
36+
id: logs
37+
attributes:
38+
label: Any related code to produce this issue and relevant log output.
39+
description: Please copy and paste any relevant code or logs to reproduce this issue. If you have your own public repository, you can link to that here.
40+
render: shell
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Feature request
2+
description: Suggest an feature / idea for this project
3+
title: "[Feature Request / Suggestion]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
We appreciate your feedback on how to improve this project. Please be sure to include as much details & any resources as possible!
10+
- type: textarea
11+
id: Suggestion
12+
attributes:
13+
label: Suggestion / Feature Request
14+
description: Describe the feature(s) you would like to see added.
15+
placeholder: Tell us your suggestion
16+
value: "Your suggestion here"
17+
validations:
18+
required: true

.github/pull_request_template.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## Description
2+
_describe the intent of your changes here_
3+
4+
5+
#### GitHub Issue: [Closes|Fixes|Resolves] #_your GitHub issue number here_
6+
7+
### Changes
8+
* ...
9+
* ...
10+
* ...
11+
12+
### Screenshots / Videos Showing UI Changes (if applicable)
13+
14+
15+
### Testing Strategy
16+
_describe how you or someone else can test and verify the changes_
17+
18+
19+
### Concerns
20+
_describe any concerns that might be worth mentioning or discussing_

.github/workflows/node.js.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
name: Node.js CI Build & Test
5+
6+
on:
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches: [ "main" ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
matrix:
19+
node-version: [21.x]
20+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Use Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v3
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
cache: 'npm'
29+
- run: npm ci
30+
- run: npm run build --if-present
31+
# TODO: once we have a test runner/framework in place, uncomment this
32+
# - run: npm test

0 commit comments

Comments
 (0)