Skip to content

Commit

Permalink
feat: update assets and deployment (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Mar 2, 2024
2 parents 3c9cbcb + 54993db commit 0b46f34
Show file tree
Hide file tree
Showing 18 changed files with 191 additions and 37 deletions.
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

0 comments on commit 0b46f34

Please sign in to comment.