Skip to content

Commit

Permalink
ci: update matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Oct 15, 2024
1 parent 7d7ed7a commit b8333ad
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,31 @@ jobs:

strategy:
matrix:
node-version: [4.x, 6.x, 8.x, 9.x, 10.x, 12.x, 14.x, 16.x, 18.x, 19.x]
node-version:
- '4.x'
- '5.x'
- '6.x'
- '7.x'
- '8.x'
- '9.x'
- '10.x'
- '11.x'
- '12.x'
- '13.x'
- '14.x'
- '15.x'
- '16.x'
- '17.x'
- '18.x'
- '19.x'
- '20.x'
- '21.x'
- '22.x'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand All @@ -23,9 +42,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm install
Expand Down

0 comments on commit b8333ad

Please sign in to comment.