Skip to content

Commit

Permalink
Merge pull request #248 from FalkorDB/release
Browse files Browse the repository at this point in the history
fix publish
  • Loading branch information
gkorland authored Dec 25, 2024
2 parents 4494dff + 1ee3d5f commit 2c8f474
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ jobs:
- run: npm ci
- run: npm run lint
- run: npm run build --if-present

- name: Run tests
run: npm run test
run: npm test
env:
FALKORDB_HOST: localhost
FALKORDB_PORT: 6379
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,22 @@ on:
jobs:
build:
runs-on: ubuntu-latest
services:
falkordb:
image: falkordb/falkordb:latest
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm test
- name: Run tests
run: npm test
env:
FALKORDB_HOST: localhost
FALKORDB_PORT: 6379

publish-npm:
needs: build
Expand Down

0 comments on commit 2c8f474

Please sign in to comment.