Skip to content

Commit

Permalink
ci: update ci to newer versions of things
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jan 17, 2023
1 parent bb88e78 commit 1e30907
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 }}

Expand All @@ -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

0 comments on commit 1e30907

Please sign in to comment.