diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2c0caa5294..da82911c61 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,10 +37,6 @@ jobs: run: | npm install --no-progress pip install flake8 pytest - - name: Lint node - if: matrix.os == 'ubuntu-latest' - run: | - npm run lint - name: Lint python if: matrix.os == 'ubuntu-latest' run: | @@ -51,7 +47,7 @@ jobs: - name: Run node tests (Linux and macOS) if: matrix.os != 'windows-latest' run: | - npm run test:ci + npm test - name: Run python tests (Linux and macOS) if: matrix.os != 'windows-latest' run: | @@ -60,7 +56,7 @@ jobs: if: matrix.os == 'windows-latest' shell: bash run: | - GYP_MSVS_VERSION=2015 GYP_MSVS_OVERRIDE_PATH="C:\\Dummy" npm run test:ci + GYP_MSVS_VERSION=2015 GYP_MSVS_OVERRIDE_PATH="C:\\Dummy" npm test - name: Run python tests (Windows) if: matrix.os == 'windows-latest' shell: bash diff --git a/package.json b/package.json index 2d3c768a4d..fd286374aa 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,6 @@ }, "scripts": { "lint": "standard */*.js test/**/*.js", - "test": "npm run lint && npm run test:ci", - "test:ci": "tap --timeout=120 test/test-*" + "test": "npm run lint && tap --timeout=120 test/test-*" } }