From 6b4c3ba944dfb7c306345f216d10f55bb6ac123f Mon Sep 17 00:00:00 2001 From: Amardeepsingh Siglani Date: Mon, 12 Dec 2022 10:24:11 -0800 Subject: [PATCH 1/2] removed mac os from unit test platforms Signed-off-by: Amardeepsingh Siglani --- .github/workflows/unit-tests-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests-workflow.yml b/.github/workflows/unit-tests-workflow.yml index d08312630..06dca2613 100644 --- a/.github/workflows/unit-tests-workflow.yml +++ b/.github/workflows/unit-tests-workflow.yml @@ -13,7 +13,7 @@ jobs: name: Run unit tests strategy: matrix: - os: [ubuntu-latest, mac-latest, windows-latest] + os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: # Enable longer filenames for windows From e50cc2438ee104e1f72c32631d60e70e2d44165b Mon Sep 17 00:00:00 2001 From: Amardeepsingh Siglani Date: Mon, 12 Dec 2022 10:25:05 -0800 Subject: [PATCH 2/2] removed redundant command Signed-off-by: Amardeepsingh Siglani --- .lintstagedrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lintstagedrc b/.lintstagedrc index e7e7db117..e903b669c 100644 --- a/.lintstagedrc +++ b/.lintstagedrc @@ -1,3 +1,3 @@ { - "*.{ts,tsx,js,jsx,json,css,md}": ["prettier --write", "git add"] + "*.{ts,tsx,js,jsx,json,css,md}": ["prettier --write"] }