diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index f6c4825..19af949 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -25,7 +25,7 @@ jobs: code-style: runs-on: ubuntu-latest - name: 'Check code style for Node.js v${{ matrix.node-version }}' + name: 'Code style @ Node v${{ matrix.node-version }}' needs: - yml-lint - markdown-lint @@ -52,7 +52,7 @@ jobs: test-unit: runs-on: ubuntu-latest - name: 'Check unit tests for Node.js v${{ matrix.node-version }}' + name: 'Unit tests @ Node v${{ matrix.node-version }}' needs: - yml-lint - markdown-lint @@ -79,7 +79,7 @@ jobs: test-feature: runs-on: ubuntu-latest - name: 'Check feature tests for Node.js v${{ matrix.node-version }}' + name: 'Feature tests @ Node v${{ matrix.node-version }}' needs: - yml-lint - markdown-lint diff --git a/package.json b/package.json index 918f995..2410150 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "scripts": { "watch": "webpack --mode development --watch", "build": "webpack --mode production", - "cs": "eslint . --ext .ts ./src ./test", + "cs": "eslint --ext .ts ./src ./test", "cs:fix": "eslint --ext .ts ./src ./test --fix", "test:unit": "jest ./test/Unit", "test:feature": "jest ./test/Feature",