Skip to content

Commit 0660e61

Browse files
committed
client refactor
1 parent 6d26645 commit 0660e61

File tree

93 files changed

+23923
-25749
lines changed

Some content is hidden

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

93 files changed

+23923
-25749
lines changed

.github/workflows/client-cd.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ on:
33
workflow_dispatch:
44
inputs:
55
logLevel:
6-
description: "Log level"
6+
description: 'Log level'
77
required: true
8-
default: "warning"
8+
default: 'warning'
99
tags:
10-
description: "Test scenario tags"
10+
description: 'Test scenario tags'
1111
defaults:
1212
run:
1313
working-directory: client
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/upload-artifact@master
2727
with:
2828
name: build
29-
path: client/build
29+
path: client_web/build
3030
env:
3131
SKIP_PREFLIGHT_CHECK: true
3232
REACT_APP_WCA_LOGIN_URL_DEV: ${{ secrets.REACT_APP_WCA_LOGIN_URL_DEV}}
@@ -42,11 +42,11 @@ jobs:
4242
uses: actions/download-artifact@master
4343
with:
4444
name: build
45-
path: client/build
45+
path: client_web/build
4646
- name: Deploy to Firebase
4747
uses: w9jds/firebase-action@master
4848
with:
4949
args: deploy --only hosting
5050
env:
5151
FIREBASE_TOKEN: ${{ secrets.FIREBASE_CI_TOKEN }}
52-
PROJECT_PATH: ./client
52+
PROJECT_PATH: ./client_web

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,4 @@ typings/
6565

6666
# build
6767
client/build/
68+
client_web/build

0 commit comments

Comments
 (0)