Skip to content

Commit

Permalink
Simplify version numbers, use more OSs
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbarth committed May 31, 2023
1 parent eeb1ea7 commit 63d2ec0
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,23 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
env:
CI: true

strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x, 16.x, 18.x]
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [8, 10, 12, 14, 16, 18, lts/*]
experimental: [false]
include:
- node-version: latest
experimental: [true]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
Expand All @@ -30,4 +36,4 @@ jobs:
- name: Codecov
uses: codecov/codecov-action@v3.1.1
with:
verbose: true
verbose: true

0 comments on commit 63d2ec0

Please sign in to comment.