From 90cd64f0288702b6f1c7626589705649d6c7c38b Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Thu, 23 Feb 2023 03:26:44 +0900 Subject: [PATCH] Add macos test because of it looks flaky https://github.com/kachick/asdf-cargo-make/actions/workflows/rtx.yml --- .github/workflows/test.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e26f626..9d944ca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,13 +16,23 @@ jobs: - run: | npm run all test: # make sure the action works on a clean machine without building - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + os: + - ubuntu-latest + - macos-latest + tool_versions: + - | + nodejs 18 + - | + nodejs 16 + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: ./ with: - tool_versions: | - nodejs 18 + tool_versions: ${{ matrix.tool_versions }} - run: rtx --version - run: rtx exec -- node --version - run: which node