Skip to content

Commit

Permalink
Feat/gitflow setup (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
NkwaTambe authored Oct 24, 2024
2 parents d258c46 + 419727d commit 00e035a
Show file tree
Hide file tree
Showing 18 changed files with 2,663 additions and 174 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/analyses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,25 @@ jobs:
path: node_modules
key: ${{ github.sha }}

build:
needs: install
runs-on: ubuntu-latest
steps:
# Check out the code from the repository
- uses: actions/checkout@v2

# Use cached node_modules to avoid reinstalling dependencies
- name: Cached node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ github.sha }}

# Run the build command
- name: Build
run: npm run build


# Step 2: Run lint checks with ESLint
lint:
needs: install # Depends on the install job
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>webank-UserApp + TS</title>
<title>webank-UserApp</title>
</head>
<body>
<div id="root"></div>
Expand Down
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
setupFilesAfterEnv: ['<rootDir>/jest-setup.js']
Loading

0 comments on commit 00e035a

Please sign in to comment.