-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* install rainbowkit,view, wagmi * implement login ui * update axios instance * update app.tsx * implement auth * fix address format * update signOut function * ignore .env * delete .env file * add secrets * remove file
- Loading branch information
1 parent
fbb0345
commit 11613f2
Showing
14 changed files
with
17,075 additions
and
4,256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,21 +10,25 @@ jobs: | |
node: ['18', '17'] | ||
name: test/node ${{ matrix.node }}/${{ matrix.platform }} | ||
runs-on: ${{ matrix.platform }} | ||
env: | ||
VITE_API_BASE_URL: ${{ secrets.VITE_API_BASE_URL }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
cache: 'npm' | ||
- run: npm install | ||
# - run: npm run lint | ||
- run: npm run test | ||
- run: npm run build | ||
|
||
coverage: | ||
needs: [test] | ||
name: coverage | ||
runs-on: ubuntu-latest | ||
env: | ||
VITE_API_BASE_URL: ${{ secrets.VITE_API_BASE_URL }} | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
|
@@ -33,8 +37,7 @@ jobs: | |
cache: 'npm' | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm run coverage | ||
- uses: paambaati/[email protected] | ||
env: | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
with: | ||
coverageCommand: npm run coverage | ||
coverageCommand: npm run coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,5 @@ dist-ssr | |
*.sw? | ||
|
||
coverage | ||
|
||
.env |
Oops, something went wrong.