Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update assets and deployment #81

Merged
merged 5 commits into from
Mar 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 20 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: UFO CI

env:
NODE_VERSION: 18
is-main-branch: ${{ github.ref == 'refs/heads/main' }}
is-pull-request: ${{ github.event_name == 'pull_request' }}

Expand All @@ -24,10 +23,10 @@ jobs:
fetch-depth: 0
# Derive appropriate SHAs for base and head for `nx affected` commands
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
node-version: 20
cache: 'npm'

# Aggressive NPM dependency caching
# https://dev.to/drakulavich/aggressive-dependency-caching-in-github-actions-3c64
Expand Down Expand Up @@ -57,10 +56,10 @@ jobs:
fetch-depth: 0
# Derive appropriate SHAs for base and head for `nx affected` commands
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
node-version: 20
cache: 'npm'

- name: Cache NPM Dependencies
uses: actions/cache@v3
Expand All @@ -86,10 +85,10 @@ jobs:
fetch-depth: 0
# Derive appropriate SHAs for base and head for `nx affected` commands
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache: 'npm'

- name: Cache NPM Dependencies
uses: actions/cache@v3
Expand All @@ -115,10 +114,10 @@ jobs:
fetch-depth: 0
# Derive appropriate SHAs for base and head for `nx affected` commands
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
node-version: 20
cache: 'npm'

- name: Cache NPM Dependencies
uses: actions/cache@v3
Expand All @@ -142,10 +141,10 @@ jobs:
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
node-version: 20
cache: 'npm'

- name: Cache NPM Dependencies
uses: actions/cache@v3
Expand All @@ -171,10 +170,10 @@ jobs:
fetch-depth: 0
# Derive appropriate SHAs for base and head for `nx affected` commands
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
node-version: 20
cache: 'npm'

- name: Cache NPM Dependencies
uses: actions/cache@v3
Expand Down Expand Up @@ -211,10 +210,10 @@ jobs:
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
node-version: 20
cache: 'npm'

- name: Cache NPM Dependencies
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion apps/audit-manager/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"projectType": "application",
"prefix": "app",
"sourceRoot": "apps/audit-manager/src",
"tags": [],
"tags": ["frontend"],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
Expand Down
8 changes: 6 additions & 2 deletions apps/audit-manager/src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { Route } from '@angular/router';
import { auditBuilderRoutes } from '@app-speed/feature/audit-builder';

export const appRoutes: Route[] = [
...auditBuilderRoutes
{
path: 'audit-builder',
loadComponent: () => import('@app-speed/feature/audit-builder').then(c => c.AuditBuilderContainer),
},
{ path: '', redirectTo: 'audit-builder', pathMatch: 'full' },
{ path: '**', redirectTo: 'audit-builder' },
];
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 86 additions & 0 deletions apps/audit-manager/src/assets/FO11185404045a6-01.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading