From b710bb5f1afb3c72bde47ed2b91b13a8da735f09 Mon Sep 17 00:00:00 2001 From: Juri Date: Thu, 30 Jan 2025 20:55:08 +0100 Subject: [PATCH] add sleep before tasks run --- .github/workflows/ci.yml | 2 +- nx.json | 15 ++++----------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2c6646..339e9fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,5 +28,5 @@ jobs: cache: "npm" - run: npm ci --legacy-peer-deps - uses: nrwl/nx-set-shas@v4 - - run: sleep 60 # ignore, just for the purpose of the benchmark + - run: sleep 180 # ignore, just for the purpose of the benchmark - run: npx nx run-many -t typecheck build diff --git a/nx.json b/nx.json index bce4b00..8debf60 100644 --- a/nx.json +++ b/nx.json @@ -2,19 +2,12 @@ "$schema": "./node_modules/nx/schemas/nx-schema.json", "targetDefaults": { "typecheck": { - "outputs": [ - "{projectRoot}/out-tsc" - ], - "dependsOn": [ - "^typecheck" - ] + "outputs": ["{projectRoot}/out-tsc"], + "dependsOn": ["^typecheck"] } }, "namedInputs": { - "default": [ - "{projectRoot}/**/*", - "sharedGlobals" - ], + "default": ["{projectRoot}/**/*", "sharedGlobals"], "production": [ "default", "!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)", @@ -78,5 +71,5 @@ } }, "nxCloudId": "677c180c2f196d703cd4669d", - "bump": 5 + "bump": 6 }