Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Nefariusek committed Nov 28, 2021
2 parents 20a26ae + a869b1f commit b5345cb
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
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.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/development-task.md
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
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/project-ui-ux.md
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**
48 changes: 48 additions & 0 deletions .github/workflows/node.js.yml
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

0 comments on commit b5345cb

Please sign in to comment.