diff --git a/.github/workflows/node_on_three_oses.yml b/.github/workflows/node_on_three_oses.yml new file mode 100644 index 00000000..92c23ab8 --- /dev/null +++ b/.github/workflows/node_on_three_oses.yml @@ -0,0 +1,18 @@ +name: node_on_three_oses +on: [push, pull_request] +jobs: + node_on_three_oses: + strategy: + fail-fast: false + max-parallel: 3 + matrix: + node-version: [18, 20, 21, 22] + os: [macos-latest-arm64, ubuntu-latest-arm64, windows-latest-arm64] + arch: [arm64] + runs-on: ${{ matrix.os }} + steps: + # - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + - run: echo "${{ matrix }} or ${{ toJSON(matrix) }}"