-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
109 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,30 @@ | ||
--- | ||
name: Bug | ||
about: Defect | ||
title: '' | ||
labels: 'type: bug' | ||
assignees: '' | ||
--- | ||
|
||
**Description** | ||
|
||
|
||
**Steps to reproduce** | ||
1. Go to '...' | ||
2. Click '....' | ||
3. Scroll down to '....' | ||
4. Note that <something happens> | ||
|
||
**Desired functionality** | ||
|
||
**Screenshots** | ||
|
||
**Technical Info(optional):** | ||
- Type: [e.g. Desktop, Telefon, Tablet] | ||
- Screen resolution: [e.g. 1200x750 px] | ||
- OS: [e.g. iOS, Android, Windows 10] | ||
- Browser: [e.g. chrome, safari] | ||
- App version [e.g. 0.2.1] | ||
|
||
**Additional informations** | ||
Everything that may be helpful to fix defect. |
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 @@ | ||
--- | ||
name: Development Task | ||
about: Feature | ||
title: As <who?>, I want to <do what?>. | ||
labels: 'type: development task' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Acceptance criteria | ||
**Verify, consult and update before starting.** | ||
|
||
- [ ] //TODO1 | ||
- [ ] //TODO2 | ||
|
||
### Additional notes |
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,15 @@ | ||
--- | ||
name: Project UI/UX | ||
about: 'UI/UX task' | ||
title: '' | ||
labels: 'UI/UX Design' | ||
assignees: '' | ||
--- | ||
|
||
**Miro/Figma Link** | ||
|
||
Link to the project | ||
|
||
|
||
|
||
**Mark User Story connected to this issue** |
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,48 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Node.js CI | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**/*.md' | ||
|
||
jobs: | ||
build: | ||
name: 'Build application' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16.x | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- uses: actions/upload-artifact@v1 | ||
name: Upload build as artifact | ||
if: always() | ||
with: | ||
name: app-dist | ||
path: ./dist | ||
deploy-on-github-pages: | ||
name: 'Deploy app to GitHub Pages from develop branch source code' | ||
if: github.ref == 'refs/heads/develop' | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: app-dist | ||
path: ./dist | ||
- name: Deploy app as GitHub Pages | ||
uses: peaceiris/[email protected] | ||
if: ${{ github.event_name != 'pull_request' && always() }} | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: './dist' | ||
user_name: 'github-actions[bot]' | ||
user_email: 'github-actions[bot]@users.noreply.github.com' | ||
force_orphan: true | ||
keep_files: false |