diff --git a/.github/actions/es-lint/action.yml b/.github/actions/es-lint/action.yml deleted file mode 100644 index fda93f250..000000000 --- a/.github/actions/es-lint/action.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: ESLint -description: Run ESLint -runs: - using: "composite" - steps: - - name: Install deps - run: npm ci - shell: bash - - name: Run lint - run: npm run test:lint - shell: bash diff --git a/.github/workflows/pull_request.workflow.yml b/.github/workflows/pull_request.workflow.yml index 4afb21b08..e3c223e1c 100644 --- a/.github/workflows/pull_request.workflow.yml +++ b/.github/workflows/pull_request.workflow.yml @@ -23,7 +23,9 @@ jobs: - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - uses: ./.github/actions/es-lint + - runs: | + npm ci + npm run test:lint unit-tests: name: Unit Tests