From 137f69ee589a854c217a89f6bb713be3da8f639f Mon Sep 17 00:00:00 2001 From: Taha Abdelmoutaleb Cherfia Date: Thu, 30 Nov 2023 14:30:01 +0100 Subject: [PATCH] ci(github): add description to run commands --- .github/workflows/build.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b6bab6d9..6d38ae75 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: