Skip to content

Commit

Permalink
ci(github): add description to run commands
Browse files Browse the repository at this point in the history
  • Loading branch information
cherfia committed Nov 30, 2023
1 parent 20fcd53 commit 137f69e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,14 @@ jobs:
- name: Validate pull requests
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}^${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
- run: yarn
- run: yarn lint
- run: yarn build
- run: yarn test
- name: Install Dependencies
run: yarn
- name: Lint Code
run: yarn lint
- name: Build Code
run: yarn build
- name: Run Tests
run: yarn test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 137f69e

Please sign in to comment.