Skip to content

Commit

Permalink
Drops support for Node 10.x, 12.x and adds 18.x (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt authored Sep 8, 2022
1 parent 30a5a7f commit 9ee772d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,26 @@ name: Node.js CI

on:
push:
branches: [ master ]
branches: [ master, v5.0.0-development ]
pull_request:
branches: [ master ]
branches: [ master, v5.0.0-development ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ An implementation of [Amazon Ion](https://amzn.github.io/ion-docs/) for JavaScri
[![License](https://img.shields.io/hexpm/l/plug.svg)](https://github.com/amzn/ion-js/blob/master/LICENSE)
[![Documentation](https://img.shields.io/badge/docs-api-green.svg)](https://amzn.github.io/ion-js/api/index.html)

This package is tested with Node JS major versions **10**, **12**, **14**, and **16**. While this library
This package is tested with Node JS major versions **14**, **16**, and **18**. While this library
should be usable within browsers that support **ES5+**, please note that it is not currently being tested
in any browser environments.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ion-js",
"version": "4.3.1-SNAPSHOT",
"version": "5.0.0-SNAPSHOT",
"description": "A JavaScript implementation of the Ion data interchange format",
"main": "dist/commonjs/es6/Ion.js",
"types": "dist/commonjs/es6/Ion.d.ts",
Expand Down

0 comments on commit 9ee772d

Please sign in to comment.