diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86afb5a..7e45325 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,14 +7,12 @@ jobs: strategy: fail-fast: false matrix: - node-version: [8.x, 10.x, 12.x, 14.x] + node-version: [16.x, 18.x, 19.x] platform: - os: ubuntu-latest shell: bash - os: macos-latest shell: bash - - os: windows-latest - shell: bash - os: windows-latest shell: powershell @@ -25,11 +23,11 @@ jobs: steps: # Checkout the npm/cli repo - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Installs the specific version of Node.js - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} @@ -39,10 +37,4 @@ jobs: # Run the tests - name: Run Tap tests - if: matrix.node-version != '8.x' run: npm test - - # Run the tests - - name: Run Tap tests - if: matrix.node-version == '8.x' - run: npm test -- --no-coverage