diff --git a/.github/workflows/codecov-test-suites.yml b/.github/workflows/codecov-test-suites.yml index d59ea530..f44e95c6 100644 --- a/.github/workflows/codecov-test-suites.yml +++ b/.github/workflows/codecov-test-suites.yml @@ -1,4 +1,6 @@ -name: Run Test Suites +# This workflow runs the automated test and uploads the coverage results to codecov.io + +name: "Run Codecov Tests" on: [push] @@ -12,4 +14,4 @@ jobs: export DISPLAY=:99 npm install npm run test:coverage - bash <(curl -s https://codecov.io/bash) # Upload to Codecov + bash <(curl -s https://codecov.io/bash) diff --git a/.github/workflows/enforce-changelog.yml b/.github/workflows/enforce-changelog.yml index 1a8747c9..67a95a48 100644 --- a/.github/workflows/enforce-changelog.yml +++ b/.github/workflows/enforce-changelog.yml @@ -1,3 +1,5 @@ +# This workflow enforces the update of a changelog file on every pull request + name: "Enforce Changelog" on: @@ -5,7 +7,6 @@ on: types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] jobs: - # Enforces the update of a changelog file on every pull request check: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/node-ci.js.yml b/.github/workflows/node-ci.js.yml index f794c941..7f6f23b1 100644 --- a/.github/workflows/node-ci.js.yml +++ b/.github/workflows/node-ci.js.yml @@ -1,7 +1,7 @@ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: Automated Tests +name: "Run Automated Tests" on: push: @@ -11,13 +11,10 @@ on: jobs: test: - runs-on: ubuntu-latest - strategy: matrix: node-version: [10.x, 12.x, 14.x] - steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }}