Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit f52242c
Author: SkyZeroZx <[email protected]>
Date:   Fri Sep 30 22:16:10 2022 -0500

    Update Readme With Badges SonarCloud

commit f140bad
Author: SkyZeroZx <[email protected]>
Date:   Fri Sep 30 21:57:31 2022 -0500

    Update Readme

commit 9521145
Author: SkyZeroZx <[email protected]>
Date:   Fri Sep 30 21:55:07 2022 -0500

    Add Demo Gif

commit 182910e
Author: SkyZeroZx <[email protected]>
Date:   Fri Sep 30 21:39:00 2022 -0500

    Add Unit Test & Update Readme

commit 126c575
Author: SkyZeroZx <[email protected]>
Date:   Thu Sep 29 20:07:16 2022 -0500

    Add Upload Photo User

commit dc9d382
Author: SkyZeroZx <[email protected]>
Date:   Thu Sep 29 00:38:01 2022 -0500

    Refactor Folders

commit 38c129f
Author: SkyZeroZx <[email protected]>
Date:   Wed Sep 28 01:10:55 2022 -0500

    Update SweetAlert with Angular Directives

commit 645d01e
Author: SkyZeroZx <[email protected]>
Date:   Sun Sep 25 13:27:43 2022 -0500

    Update angular.json

commit aae12f3
Author: SkyZeroZx <[email protected]>
Date:   Sun Sep 25 13:13:04 2022 -0500

    Add Provider DateRangePickerConfig & Validate Range Hours

commit a68093c
Author: SkyZeroZx <[email protected]>
Date:   Sat Sep 24 22:22:23 2022 -0500

    Fixed Locale Date Pipe

commit e1ef210
Author: SkyZeroZx <[email protected]>
Date:   Sat Sep 24 17:07:11 2022 -0500

    Fixed Scrolling

commit cb97528
Author: SkyZeroZx <[email protected]>
Date:   Sat Sep 24 14:38:07 2022 -0500

    Fixed Swipe Event in Contacts and Add Alert Register Attendance

commit d2bd8f8
Author: SkyZeroZx <[email protected]>
Date:   Fri Sep 23 20:11:11 2022 -0500

    Test Swiper Left and Right

commit 87b7f0b
Author: SkyZeroZx <[email protected]>
Date:   Fri Sep 23 19:26:15 2022 -0500

    Update guards

commit e6871ab
Author: SkyZeroZx <[email protected]>
Date:   Fri Sep 23 18:30:52 2022 -0500

    Add HammerJS Swipe

commit c55774e
Author: SkyZeroZx <[email protected]>
Date:   Thu Sep 22 22:00:33 2022 -0500

    Add Licence Module & Cache Module

commit 36877c2
Author: SkyZeroZx <[email protected]>
Date:   Thu Sep 22 00:06:02 2022 -0500

    Add Type Modulo

commit 88d278a
Author: SkyZeroZx <[email protected]>
Date:   Tue Sep 20 17:07:40 2022 -0500

    Fixed Date Utils

commit ff0f114
Author: SkyZeroZx <[email protected]>
Date:   Tue Sep 20 16:51:34 2022 -0500

    Fixed Error with LocalStorage

    Fixed error in Unit Test in LocalStorage use in NavBarComponent , SideBarComponent and NavigationBarComponent

commit 20532a5
Author: SkyZeroZx <[email protected]>
Date:   Tue Sep 20 16:34:00 2022 -0500

    Add CI with SonarCloud

commit 1254d57
Author: SkyZeroZx <[email protected]>
Date:   Tue Sep 20 01:10:29 2022 -0500

    Add Unit Test

commit 968e20d
Author: SkyZeroZx <[email protected]>
Date:   Sat Sep 17 02:44:46 2022 -0500

    Update Icons

commit c91e6af
Author: SkyZeroZx <[email protected]>
Date:   Sat Sep 17 02:31:06 2022 -0500

    update home component

commit 38da412
Author: SkyZeroZx <[email protected]>
Date:   Sat Sep 17 01:37:09 2022 -0500

    Update manifest

commit e522811
Author: SkyZeroZx <[email protected]>
Date:   Sat Sep 17 01:09:57 2022 -0500

    Update Icon
  • Loading branch information
SkyZeroZx committed Oct 1, 2022
1 parent 765d5e1 commit 66b6f5f
Show file tree
Hide file tree
Showing 338 changed files with 11,791 additions and 3,837 deletions.
15 changes: 15 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
dist/
node_modules/
.gitignore
.git/
.github/
.scannerwork/
docs/
e2e/
LOG/
log/
.gitattributes
.angular
.nyc_output
coverage-e2e/
coverage-unit-test/
78 changes: 78 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: SkyKronoApp
on:
push:
branches:
- main
- develop
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/setup-node@v1
with:
node-version: 16
- name: Run Install Dependences
run: npm i
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
unit-test:
name: Unit Test Jasmine/Karma
needs: build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: 16
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
- name: Run All Unit Tests
run: npm run unit-test
- uses: actions/cache@v2
id: build-unit-test
with:
path: ./*
key: ${{ github.sha }}
- uses: actions/upload-artifact@v3
with:
name: coverage-unit-test
path: coverage-unit-test/*
sonarcloud:
name: SonarCloud
needs: [build , unit-test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: 16
- uses: actions/cache@v2
id: build-unit-test
with:
path: ./*
key: ${{ github.sha }}
- uses: actions/download-artifact@v3
with:
name: coverage-unit-test
path: coverage-unit-test
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,21 @@
/dist
/tmp
/out-tsc

#Sonar
.scannerwork

# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# tests
/coverage-unit-test
/coverage-e2e-test


# profiling files
chrome-profiler-events.json
speed-measure-plugin.json
Expand Down
16 changes: 16 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"exclude": [
"./coverage/**",
"./coverage-unit-test/**",
"Sky-Krono-App/**",
"./coverage-e2e/**",
"cypress/**",
"./dist/**",
"**/*.spec.ts",
"./src/main.ts",
"./src/test.ts",
"**/*.conf.js"
]
}
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100
"printWidth": 90
}
6 changes: 0 additions & 6 deletions .scannerwork/report-task.txt

This file was deleted.

Loading

1 comment on commit 66b6f5f

@vercel
Copy link

@vercel vercel bot commented on 66b6f5f Oct 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

sky-krono-app – ./

sky-krono-app-git-main-skyzerozx.vercel.app
sky-krono-app.vercel.app
sky-krono-app-skyzerozx.vercel.app

Please sign in to comment.