From 1a1c5aef8b5e001fec70425c8fb5df954555c13d Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Fri, 16 Dec 2022 12:19:15 -0800 Subject: [PATCH] Remove mac os from unit test platforms (#211) (#223) * removed mac os from unit test platforms Signed-off-by: Amardeepsingh Siglani * removed redundant command Signed-off-by: Amardeepsingh Siglani Signed-off-by: Amardeepsingh Siglani (cherry picked from commit 34d3a5710027510917af53d2855f0f86ea5c4103) Co-authored-by: Amardeepsingh Siglani --- .github/workflows/unit-tests-workflow.yml | 2 +- .lintstagedrc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 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"] }