Skip to content

Commit

Permalink
build: bump min node version to 18
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Aug 4, 2024
1 parent 96ff8cc commit ef762c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ jobs:
os:
- 'ubuntu-latest'
node_version:
- '16'
- '18'
- '20'
runs-on: ${{ matrix.os }}
env:
REPORT_COVERAGE: ${{ fromJSON('["false", "true"]')[matrix.node_version == '16' && matrix.os == 'ubuntu-latest'] }}
REPORT_COVERAGE: ${{ fromJSON('["false", "true"]')[matrix.node_version == '18' && matrix.os == 'ubuntu-latest'] }}
EXCLUDE_RACE_TESTS: true
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Testing `iter-ops` against the latest `rxjs`:

**Tested with:**

- NodeJS v16.13.1
- NodeJS v18.19.0
- rxjs v7.4.0
- iter-ops v1.5.2

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
"node": ">=18"
}
}
}

0 comments on commit ef762c3

Please sign in to comment.