Skip to content

Commit

Permalink
fixes round
Browse files Browse the repository at this point in the history
Signed-off-by: avifenesh <[email protected]>
  • Loading branch information
avifenesh committed Oct 25, 2024
1 parent 0b445ce commit 8a717f6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/create-test-matrices/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ inputs:
description: "Run the full matrix"
required: true
type: boolean
containers:
description: "Run in containers"
required: true
type: boolean

outputs:
engine-matrix-output:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/lint-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ inputs:

runs:
using: "composite"

steps:
- uses: actions/checkout@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:
default: false

schedule: # running tests by cron is disabled on forks by the condition defined for each job
- cron: "0 3 * * *" # Runs at 03:00 (3 AM) UTC every day
- cron: "0 3 * * *" # Runs at 03:00 (3 AM) UTC every day

concurrency:
group: nightly-${{ github.head_ref || github.ref }}-${{ toJson(inputs) }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
run-full-tests-for-go:
# Go deactivated in cron, uncomment condition to activate
#if: (github.repository_owner == 'valkey-io' && github.event_name == 'schedule') || (github.event_name == 'workflow_dispatch' && inputs.go == true)
if: (github.event_name == 'workflow_dispatch' && inputs.go == true)
if: (github.event_name == 'workflow_dispatch' && inputs.go == true) || (github.repository_owner == 'valkey-io' && github.event_name == 'schedule')
uses: ./.github/workflows/go.yml
name: Run CI for go client
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/npm-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
required: true

concurrency:
group: npm-${{ github.head_ref || github.ref }}
group: node-${{ github.head_ref || github.ref }}-${{ toJson(inputs) }}
cancel-in-progress: true

permissions:
Expand Down
8 changes: 3 additions & 5 deletions node/tests/GlideClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,9 @@ describe("GlideClient", () => {
"check that blocking commands returns never timeout_%p",
async (protocol) => {
client = await GlideClient.createClient(
getClientConfigurationOption(
cluster.getAddresses(),
protocol,
{ requestTimeout: 300 },
),
getClientConfigurationOption(cluster.getAddresses(), protocol, {
requestTimeout: 300,
}),
);

const promiseList = [
Expand Down

0 comments on commit 8a717f6

Please sign in to comment.