Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ops: adds coverage for Node@22 and adds workflow status reference to browser support section #169

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
cache: npm
node-version: lts/iron
Expand All @@ -29,11 +29,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/hydrogen', 'lts/iron']
node-version: ['lts/hydrogen', 'lts/iron', '22.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: npm
node-version: ${{ matrix.node-version }}
Expand Down
16 changes: 7 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,18 @@ We aim to support all Active LTS [Node.js releases](https://nodejs.org/en/about/
| ---------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --- |
| Node.js 18 | [![lts/hydrogen](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) | |
| Node.js 20 | [![lts/iron](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) | |
| Node.js 22 | 🧪 Experimental Support[^1] | |

[^1]: Not covered by automated test suite(s).
| Node.js 22 | [![lts/iron](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) | |

### Browser Support

Officially, the SDK supports widely adopted evergreen browsers: Edge, Chrome, Safari, and Firefox. Our bundled browser distributions target ECMAScript 2015 (ES6), which has [broader browser support](https://caniuse.com/es6) but may not be explicitly evaluated.

| Browser | Version |
| --------------- | ------- |
| Google Chrome | |
| Mozilla Firefox | |
| Microsoft Edge | |
| Apple Safari | |
| Browser | |
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Google Chrome | [![playwright](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/playwright.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/playwright.yml) |
| Mozilla Firefox | [![playwright](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/playwright.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/playwright.yml) |
| Microsoft Edge | [![playwright](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/playwright.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/playwright.yml) |
| Apple Safari | [![playwright](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/playwright.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/playwright.yml) |

### ESM, CommonJS, and UMD

Expand Down
Loading