-
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.
* Updated project structure * Updated folder name
- Loading branch information
Showing
35 changed files
with
1,118 additions
and
1,061 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
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
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 |
---|---|---|
@@ -1,23 +1,24 @@ | ||
name: EditorConfig | ||
name: EditorConfig check | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
on: ['push'] | ||
|
||
jobs: | ||
lint: | ||
editorconfig-check: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [12.x] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: borales/[email protected] | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
|
||
- name: Run install | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cmd: install | ||
- uses: borales/[email protected] | ||
|
||
- name: Run unit tests | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cmd: editorconfig:check |
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 |
---|---|---|
@@ -1,23 +1,24 @@ | ||
name: Linting | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
on: ['push'] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [12.x] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: borales/[email protected] | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
|
||
- name: Run install | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cmd: install | ||
- uses: borales/[email protected] | ||
|
||
- name: Run Lint | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cmd: lint |
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 |
---|---|---|
@@ -1,23 +1,24 @@ | ||
name: Unit tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
on: ['push'] | ||
|
||
jobs: | ||
lint: | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [12.x] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: borales/[email protected] | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
|
||
- name: Run install | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cmd: install | ||
- uses: borales/[email protected] | ||
|
||
- name: Run unit tests | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cmd: test:unit |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/cli-plugin-babel/preset' | ||
] | ||
'@vue/cli-plugin-babel/preset', | ||
], | ||
}; |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = { | ||
preset: '@vue/cli-plugin-unit-jest' | ||
preset: '@vue/cli-plugin-unit-jest', | ||
}; |
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,25 +1,26 @@ | ||
// Color variables | ||
$primary : #4b95d2; | ||
$secondary : #dbdcdf; | ||
$danger : #e84950; | ||
$dark : #303c49; | ||
$primary: #4b95d2; | ||
$secondary: #dbdcdf; | ||
$danger: #e84950; | ||
$dark: #303c49; | ||
|
||
@import 'node_modules/bootstrap/scss/bootstrap'; | ||
@import 'node_modules/bootstrap-vue/src/index.scss'; | ||
@import "node_modules/bootstrap/scss/bootstrap"; | ||
@import "node_modules/bootstrap-vue/src/index.scss"; | ||
|
||
// Global variables | ||
:root { | ||
--topbar-height: 8rem; | ||
--topbar-height: 8rem; | ||
|
||
@media (max-width: 576px) { | ||
--topbar-height: 6rem; | ||
} | ||
@media (max-width: 576px) { | ||
--topbar-height: 6rem; | ||
} | ||
} | ||
|
||
html, body { | ||
height : 100%; | ||
width : 100%; | ||
font-family : 'Open Sans', sans-serif; | ||
font-size : 16px; | ||
overflow : hidden; | ||
html, | ||
body { | ||
height: 100%; | ||
width: 100%; | ||
font-family: "Open Sans", sans-serif; | ||
font-size: 16px; | ||
overflow: hidden; | ||
} |
Oops, something went wrong.