From 36021b5b38b97e54fb50320c0b9ca91a00c39ca7 Mon Sep 17 00:00:00 2001 From: Anoop M D Date: Fri, 6 Dec 2024 19:23:56 +0530 Subject: [PATCH] feat: run npm cli tests on macos and windows --- .github/workflows/npm-bru-cli.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-bru-cli.yml b/.github/workflows/npm-bru-cli.yml index ad964a181..822b9359e 100644 --- a/.github/workflows/npm-bru-cli.yml +++ b/.github/workflows/npm-bru-cli.yml @@ -15,7 +15,10 @@ permissions: jobs: test: name: CLI Tests - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v3