Skip to content

FF to stage #657

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

Merged
merged 4 commits into from
Jan 25, 2025
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
54 changes: 54 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,60 @@ jobs:
npm run valgrind -- --t 40000


test-tsc-compile:
runs-on: ubuntu-latest
needs: build-ubuntu
strategy:
matrix:
node-version: [
"20",
]
fail-fast: false

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
architecture: 'x64'

- uses: actions/download-artifact@v4
with:
name: binding-${{ matrix.node-version }}

- name: make binding folder
run: mkdir lib/binding

- name: install mocha
run: npm install mocha

- name: install valgrind
run: |
sudo apt-get update;
sudo apt update;
sudo apt install valgrind;

- name: Install client
#fix the convention here
run: |
cp -r node-v115-linux-x64 lib/binding/node-v115-linux-x64

- name: Install client
#fix the convention here
run: |
npx tsc;
npx tsc typings/index.d.ts;
cd ts-test;
npm install ..
npx tsc;

- name: Wait for database to be ready
# Should be ready after 3 seconds
run: sleep 3

# test-typescript:
# runs-on: ubuntu-latest
# needs: build-ubuntu
Expand Down
30 changes: 18 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aerospike",
"version": "6.0.1",
"version": "6.0.2",
"description": "Aerospike Client Library",
"keywords": [
"aerospike",
Expand Down
Loading