Skip to content

Commit dd827e7

Browse files
committed
Merge remote-tracking branch 'origin/main' into amal_exportstatus
2 parents 2aa1016 + 7abeb24 commit dd827e7

File tree

57 files changed

+498
-114
lines changed

Some content is hidden

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

57 files changed

+498
-114
lines changed

.github/workflows/build.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build & Test Node.js
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
pull_request:
9+
types: [synchronize, review_requested]
10+
11+
12+
jobs:
13+
build:
14+
name: Build Node.js
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Get latest code
18+
uses: actions/checkout@v2
19+
20+
- name: Use Node.js 14 LTS
21+
uses: actions/setup-node@v2
22+
with:
23+
node-version: '14'
24+
25+
- name: Caching Dependencies
26+
uses: actions/cache@v2
27+
with:
28+
# npm cache files are stored in `~/.npm` on Linux/macOS
29+
path: ~/.npm
30+
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
31+
restore-keys: |
32+
${{ runner.OS }}-node-
33+
${{ runner.OS }}-
34+
35+
- name: Install NPM Modules
36+
run: npm install
37+
38+
- name: Build Project
39+
run: npm run build:normal

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Classifai_FrontEnd
22

3+
<p>
4+
<p align="left">
5+
<a href="https://github.com/CertifaiAI/Classifai_FrontEnd/blob/main/LICENSE">
6+
<img alt="License" src="https://img.shields.io/github/license/CertifaiAI/Classifai_FrontEnd">
7+
</a>
8+
<a href="https://sonarcloud.io/dashboard?id=CertifaiAI_Classifai_FrontEnd">
9+
<img alt="Quality Gate" src="https://sonarcloud.io/api/project_badges/measure?project=CertifaiAI_Classifai_FrontEnd&metric=alert_status">
10+
</a>
11+
<a href="https://sonarcloud.io/dashboard?id=CertifaiAI_Classifai_FrontEnd">
12+
<img alt="Bugs Count" src="https://sonarcloud.io/api/project_badges/measure?project=CertifaiAI_Classifai_FrontEnd&metric=bugs">
13+
</a>
14+
</p>
15+
316
Source code of Classifai with compiled front-end can be found [here](https://github.com/CertifaiAI/classifai).
417

518
## Component Design

dist/classifai/1-es2015.1e81ad61c76fe262f98f.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/classifai/1-es2015.9bd38b98fb13070aa286.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/classifai/1-es5.1e81ad61c76fe262f98f.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/classifai/1-es5.9bd38b98fb13070aa286.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/classifai/2-es2015.b8262e1c9e51bd64ed15.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/classifai/2-es2015.f246d1e840d9bd78fc90.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/classifai/2-es5.b8262e1c9e51bd64ed15.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/classifai/2-es5.f246d1e840d9bd78fc90.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)