Skip to content

Commit

Permalink
fixed yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Sachin authored and Sachin committed Mar 31, 2024
1 parent d842e9c commit 46f8d1a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/github.action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

# Step 3: Change directory to ui-fundamentals
- name: Change directory to ui-fundamentals
run: cd ui-fundamentals
run: cd ui-fundamentals && ls -la

# Step 4: Check for merge conflicts
- name: Check for merge conflicts
Expand All @@ -42,19 +42,23 @@ jobs:
fi
# Step 5: Install project dependencies in ui-fundamentals
- name: Install dependencies
- name: Install dependencies in ui-fundamentals
working-directory: ui-fundamentals
run: npm install

# Step 6: Run tests in ui-fundamentals
- name: Run tests
- name: Run tests in ui-fundamentals
working-directory: ui-fundamentals
run: npm test

# Step 7: Lint code in ui-fundamentals
- name: Lint code
- name: Lint code in ui-fundamentals
working-directory: ui-fundamentals
run: npm run lint # Make sure your project has ESLint configured and installed as a dependency

# Step 8: Check commit format in ui-fundamentals
- name: Check commit format
- name: Check commit format in ui-fundamentals
working-directory: ui-fundamentals
run: npm run commitlint # Assuming you have a script for commit message linting

# Step 9: Update README with download and pull request counts
Expand Down

0 comments on commit 46f8d1a

Please sign in to comment.