diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 112dc623..c22c1a26 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -1,4 +1,4 @@ -name: ๐Ÿงน Lint & changelog +name: Lint & changelog on: pull_request: @@ -6,7 +6,7 @@ on: jobs: lint: - name: Lint code + name: ๐Ÿงน Lint code runs-on: ubuntu-latest timeout-minutes: 5 defaults: @@ -33,7 +33,7 @@ jobs: run: node common/scripts/install-run-rush.js lint --verbose changelog: - name: Checks for changelogs + name: ๐Ÿ“ Checks for changelogs runs-on: ubuntu-latest timeout-minutes: 5 defaults: diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 1cd45d73..7f8ee4f7 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -9,7 +9,7 @@ # then merged it in the main branch once the publication has been done. # -name: ๐Ÿš€ Publish packages +name: Publish packages on: workflow_dispatch: @@ -43,7 +43,7 @@ env: jobs: simulate: if: inputs.PUBLICATION_MODE == 'simulate' - name: Simulate a publication to npmjs.org with the version policy ${{ inputs.VERSION_POLICY }} + name: ๐Ÿš€ Simulate a publication to npmjs.org with the version policy ${{ inputs.VERSION_POLICY }} runs-on: ubuntu-latest defaults: run: @@ -77,7 +77,7 @@ jobs: publish: if: inputs.PUBLICATION_MODE == 'publish' - name: Publish to npmjs.org with the version policy ${{ inputs.VERSION_POLICY }} + name: ๐Ÿš€ Publish to npmjs.org with the version policy ${{ inputs.VERSION_POLICY }} runs-on: ubuntu-latest defaults: run: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index dc3f9b62..fe719fa7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,4 +1,4 @@ -name: ๐Ÿ› Test +name: Tests on: pull_request: @@ -6,7 +6,7 @@ on: jobs: test: - name: Test + name: ๐Ÿ› Run tests runs-on: ubuntu-latest timeout-minutes: 5 defaults: @@ -31,11 +31,11 @@ jobs: - name: Build projects run: node common/scripts/install-run-rush.js rebuild - - name: Test + - name: Run tests if: ${{ matrix.node_version != '18' }} run: node common/scripts/install-run-rush.js test - - name: Test and generate coverage reports + - name: Run tests and generate coverage reports if: ${{ matrix.node_version == '18' }} run: node common/scripts/install-run-rush.js test --coverage @@ -48,9 +48,10 @@ jobs: retention-days: 1 coverage: - name: Upload code coverage reports to Codecov - runs-on: ubuntu-latest needs: test + name: โฌ†๏ธ Upload code coverage reports to Codecov + runs-on: ubuntu-latest + timeout-minutes: 5 defaults: run: shell: bash