Skip to content

Commit

Permalink
chore(nodejs): test against the nightly QuestDB docker image (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
glasstiger authored Jul 1, 2024
1 parent 97a5f9e commit d4fc1bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build
on:
push:
schedule:
- cron: '15 2 * * *'
- cron: '15 2,10,18 * * *'

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion test/sender.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ describe('Sender tests with containerized QuestDB instance', () => {

beforeAll(async () => {
jest.setTimeout(3000000);
container = await new GenericContainer('questdb/questdb:7.4.0')
container = await new GenericContainer('questdb/questdb:nightly')
.withExposedPorts(QUESTDB_HTTP_PORT, QUESTDB_ILP_PORT)
.start();

Expand Down

0 comments on commit d4fc1bf

Please sign in to comment.