From 7eede98a18a2205acb23821e503d19a358246481 Mon Sep 17 00:00:00 2001 From: Lars Kappert Date: Tue, 10 Oct 2023 10:50:22 +0200 Subject: [PATCH] Add linter + fix issues in root workspace --- .github/workflows/integration-tests.yml | 7 +++---- package.json | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 8e526fcfe54..d457c2de3bd 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -13,10 +13,9 @@ jobs: services: devnet: image: kadena/devnet - options: >- - --memory 7g - --cpus 2 - --health-cmd "curl --verbose --fail http://localhost:8080/info || exit 1" + options: + --memory 7g --cpus 2 --health-cmd "curl --verbose --fail + http://localhost:8080/info || exit 1" ports: - 8080:8080 diff --git a/package.json b/package.json index 6025057468a..efe22f993f9 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "format:src": "prettier . \"!packages\" --cache --write", "preinstall": "npx --no-install only-allow pnpm", "knip": "knip", - "lint": "syncpack list-mismatches", + "lint": "syncpack list-mismatches && prettier . \"!packages\" --cache --check", "publish": "changeset publish", "select": "git checkout .changeset/config.json && tsx --no-warnings ./packages/tools/scripts/publish-set.ts", "test": "turbo run test",