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

Test {Js,Wasm}Themis with Node.js v16 #801

Merged
merged 2 commits into from
Apr 21, 2021
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
18 changes: 13 additions & 5 deletions .github/workflows/test-nodejs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ jobs:
matrix:
node-version:
- 8.x # legacy
- 10.x # old LTS
- 12.x # current LTS
- 14.x # current stable
- 10.x # legacy
- 12.x # old LTS
- 14.x # current LTS
- 16.x # current stable
fail-fast: false
steps:
- name: Install system dependencies
Expand All @@ -60,16 +61,23 @@ jobs:
examples:
name: Code examples
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12.x # old LTS
- 14.x # current LTS
- 16.x # current stable
fail-fast: false
steps:
- name: Install system dependencies
run: |
sudo sh -c 'echo "DEBIAN_FRONTEND=noninteractive" >> /etc/environment'
sudo apt update
sudo apt install --yes gcc make libssl-dev
- name: Install Node.js 10.x
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: ${{ matrix.node-version }}
- name: Check out code
uses: actions/checkout@v2
- name: Install Themis Core
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test-wasm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ jobs:
matrix:
node-version:
- 8.x # legacy
- 10.x # old LTS
- 12.x # current LTS
- 14.x # current stable
- 10.x # legacy
- 12.x # old LTS
- 14.x # current LTS
- 16.x # current stable
fail-fast: false
steps:
- name: Install system dependencies
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ _Code:_
- **Node.js**

- `SecureSession` constructor now throws an exception when given incorrect key type ([#698](https://github.com/cossacklabs/themis/pull/698)).
- Node.js v16 is now supported ([#801](https://github.com/cossacklabs/themis/pull/801)).

- **Python**

Expand All @@ -142,6 +143,7 @@ _Code:_
- **WebAssembly**

- Updated Emscripten toolchain to the latest version ([#760](https://github.com/cossacklabs/themis/pull/760)).
- Node.js v16 is now supported ([#801](https://github.com/cossacklabs/themis/pull/801)).

_Infrastructure:_

Expand Down