diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e0ddb81..082f200 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,8 +23,11 @@ jobs: - name: Install Dependencies, lint and Run Tests run: | + echo "Installing dependencies..." npm ci - npx eslint . + echo "Running ESLint..." + npx eslint . --format stylish + echo "Running tests..." npm test working-directory: ${{ matrix.directory }}