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

chore(portal): migrate to Material 3 #95

Open
wants to merge 43 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
95474fa
fix(portal-app): convert to nx serve
ChristopherPHolder Jul 7, 2024
c7bd4bf
fix(portal-app): use new m3 theme
ChristopherPHolder Jul 7, 2024
80bd9dc
fix(portal-app): add stylelint
ChristopherPHolder Jul 7, 2024
8a35bfb
fix(portal-app): fix style prettier
ChristopherPHolder Jul 7, 2024
6d5b5a0
fix(portal-app): fix cd misses
ChristopherPHolder Jul 7, 2024
a3d5bcd
fix(portal-app): fix small btn
ChristopherPHolder Jul 7, 2024
625bc6c
fix(portal-app): add valid filter
ChristopherPHolder Jul 7, 2024
dd650ec
fix(portal-app): remove manual mark
ChristopherPHolder Jul 7, 2024
d408e9d
fix(portal-app): fix url refresh
ChristopherPHolder Jul 7, 2024
0aa4dfb
fix(portal-app): disable actions on submission
ChristopherPHolder Jul 7, 2024
1156bbc
fix(portal-app): disable actions on submission
ChristopherPHolder Jul 7, 2024
2468566
fix(portal-app): close accordions on submission
ChristopherPHolder Jul 7, 2024
3cd0a5d
fix(portal-app): init submit process
ChristopherPHolder Jul 7, 2024
ddf88f2
fix(portal-app): move is-online to nx
ChristopherPHolder Jul 7, 2024
1455ce3
fix(portal-app): move is-online to nx
ChristopherPHolder Jul 7, 2024
330a6fc
fix(portal-app): move user-flow-conductor to nx
ChristopherPHolder Jul 7, 2024
7dda6f8
fix(portal-app): refactor conductor logic
ChristopherPHolder Jul 8, 2024
3240e18
fix(portal-app): remake socket i o
ChristopherPHolder Jul 8, 2024
30e55c5
fix(portal-app): wip
ChristopherPHolder Jul 9, 2024
b464d09
fix(workspace): migrate nx
ChristopherPHolder Jul 12, 2024
f3d5553
fix(workspace): migrate nx
ChristopherPHolder Aug 13, 2024
16e996b
fix(workspace): migrate nx vitest inferred
ChristopherPHolder Aug 13, 2024
42ebf02
fix(workspace): migrate nx vitest inferred
ChristopherPHolder Aug 13, 2024
9b55bd1
fix(workspace): migrate nx vitest inferred
ChristopherPHolder Aug 13, 2024
60cf195
fix(workspace): migrate nx vitest inferred
ChristopherPHolder Aug 13, 2024
fe3e582
fix(workspace): migrate nx vitest inferred
ChristopherPHolder Aug 13, 2024
22d49e2
fix(workspace): migrate nx vitest inferred
ChristopherPHolder Aug 13, 2024
2b952a2
fix(workspace): migrate nx vitest inferred
ChristopherPHolder Aug 13, 2024
c9c154f
fix(workspace): turn of e2e in ci
ChristopherPHolder Aug 17, 2024
ba1990a
fix(workspace): turn of e2e in ci
ChristopherPHolder Aug 17, 2024
e7de259
fix(workspace): reset ws
ChristopherPHolder Aug 17, 2024
b78b7e2
fix(workspace): fix details
ChristopherPHolder Aug 17, 2024
87c07a3
fix(workspace): remove fake test
ChristopherPHolder Aug 17, 2024
9ccf62a
fix(workspace): fix linter
ChristopherPHolder Aug 17, 2024
b23246c
fix(workspace): fix format
ChristopherPHolder Aug 17, 2024
785e291
fix(workspace): fix format
ChristopherPHolder Aug 17, 2024
19fcd2f
fix(workspace): fix format
ChristopherPHolder Aug 18, 2024
9befcde
fix(workspace): fix format
ChristopherPHolder Aug 18, 2024
ba66763
fix(workspace): upgrade lighthouse
ChristopherPHolder Sep 9, 2024
56714b9
fix(workspace): add viewer
ChristopherPHolder Sep 9, 2024
83da7db
fix(portal): prevent submit
ChristopherPHolder Sep 9, 2024
dcde09a
fix(portal): improve ux
ChristopherPHolder Sep 9, 2024
630f79b
fix(portal): improve ux
ChristopherPHolder Sep 10, 2024
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
56 changes: 28 additions & 28 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,32 +131,32 @@ jobs:
- name: Build Affected
run: npx nx affected -t build build-storybook --parallel=3

e2e:
name: E2E Affected
needs: [build]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'

- name: Cache NPM Dependencies
uses: actions/cache@v4
with:
path: |
node_modules
~/.cache
dist
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}

- name: E2E Affected
run: npx nx affected --target=e2e --parallel=3
# e2e:
# name: E2E Affected
# needs: [build]
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - uses: nrwl/nx-set-shas@v3
# - uses: actions/setup-node@v4
# with:
# node-version: ${{ env.NODE_VERSION }}
# cache: 'npm'
#
# - name: Cache NPM Dependencies
# uses: actions/cache@v4
# with:
# path: |
# node_modules
# ~/.cache
# dist
# key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
#
# - name: E2E Affected
# run: npx nx affected --target=e2e --parallel=3

# publish-storybook:
# name: Publish Storybook
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

deploy-front-end:
name: Deploy Front-End
needs: [test, build, lint, e2e]
needs: [test, build, lint]
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:

deploy-server:
name: Deploy Server
needs: [test, build, lint, e2e]
needs: [test, build, lint]
runs-on: ubuntu-latest

steps:
Expand Down
3 changes: 3 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "stylelint-config-standard-scss"
}
28 changes: 28 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,34 @@
"options": {
"targetName": "lint"
}
},
{
"plugin": "@nx/vite/plugin",
"options": {
"buildTargetName": "build",
"serveTargetName": "serve",
"previewTargetName": "preview",
"testTargetName": "test",
"serveStaticTargetName": "serve-static"
},
"include": [
"packages/runner-app/**/*",
"packages/audit-queue/**/*",
"packages/audit-store/**/*",
"packages/cli-middleware/**/*",
"packages/user-flow-replay/**/*"
]
},
{
"plugin": "@nx/vite/plugin",
"options": {
"buildTargetName": "build",
"serveTargetName": "serve",
"previewTargetName": "preview",
"testTargetName": "e2e",
"serveStaticTargetName": "serve-static"
},
"include": ["packages/esbuild-meta/**/*", "packages/runner-e2e/**/*"]
}
]
}
207 changes: 0 additions & 207 deletions online/.gitignore

This file was deleted.

Loading
Loading