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

Refactor: Login and Register Page #174

Merged
merged 4 commits into from
Oct 19, 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
11 changes: 8 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,20 @@ jobs:
echo "Workflow Run ID: ${{ github.run_id }}"
echo "Head Repository: ${{ github.head_repository }}"
echo "Base Repository: ${{ github.base_repository }}"

- name: Checkout repo
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9

- name: Install dependencies
uses: bahmutov/npm-install@v1
run: pnpm install

- name: Build project
run: npm run build
run: pnpm run build
9 changes: 7 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,16 @@ jobs:
with:
node-version: 18

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9

- name: Install dependencies
uses: bahmutov/npm-install@v1
run: pnpm install

- name: Build project
run: npm run build
run: pnpm run build

- name: Get version
id: version
Expand Down
2 changes: 1 addition & 1 deletion chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
apptype: jzconsole
spec:
containers:
- name: jiaozifs-ui
- name: jzconsole
image: gitdatateam/jzconsole:{{ .Values.tag }}
imagePullPolicy: Always
env:
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,22 @@
"@vitejs/plugin-react": "^3.0.0",
"@vitejs/plugin-react-swc": "^3.0.1",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"browserslist": "^4.21.4",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"daisyui": "^4.12.13",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-react": "^7.23.2",
"happy-dom": "^8.9.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"postcss": "^8.4.47",
"react-test-renderer": "^18.2.0",
"rollup-plugin-analyzer": "^4.0.0",
"sass": "^1.62.1",
"tailwindcss": "^3.4.14",
"typescript": "^4.8.3",
"typesync": "^0.9.2",
"unified": "^10.1.2",
Expand Down
Loading
Loading