Skip to content

Commit

Permalink
Change targeted Node.js versions to just what's currently supported
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr0grog committed Jan 12, 2024
1 parent 4c1d15e commit 8848b6f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 10
cache: npm

- name: Install dependencies
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 10
cache: npm

- name: Install dependencies
Expand All @@ -48,7 +48,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [8, 10, 12, 14, 16, 18, 20]
# Ideally we'd also test on [12, 14, 16, 18, 20], but the current
# tooling does not support them.
node_version: [6, 8, 10]

steps:
- uses: actions/checkout@v4
Expand All @@ -74,7 +76,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 10
cache: npm

- name: Install dependencies
Expand All @@ -92,7 +94,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 10
cache: npm

- name: Install dependencies
Expand Down

0 comments on commit 8848b6f

Please sign in to comment.