Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2020-07-23 20:10:20 +0300
committerisaacs <i@izs.me>2020-07-23 20:10:20 +0300
commita40ba2877435337ca255b1ddfe1b0ce993665d36 (patch)
tree50b9e87ca1731db0ef2cf08b29f1774829cac156 /.github
parent79fd6e0b437effea471e1c98b3b4524ccdd6b866 (diff)
Temporarily only run unit tests while beta work in progress
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7b4754dfc..c3955a766 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -28,21 +28,21 @@ jobs:
# Run the tests
- name: Run Tap tests
- run: node . run tap -- "test/tap/*.js" -t600 -Rclassic -c
+ run: node . test -- -t600 -Rclassic -c
env:
DEPLOY_VERSION: testing
# Run coverage check
- name: Run coverage report
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '12.x'
- run: node . run tap -- "test/tap/*.js" -t600 -Rclassic -c
+ run: node . test -- -t600 -Rclassic -c
env:
DEPLOY_VERSION: testing
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_OPTIONAL_TOKEN }}
# - name: Run sudo tests on Linux
# if: matrix.os == 'ubuntu-latest'
- # run: sudo PATH=$PATH $(which node) . run tap -- "test/tap/*.js" --coverage --timeout 600
+ # run: sudo PATH=$PATH $(which node) . test -- --coverage --timeout 600
- name: Lint
run: node . run lint