Skip to content

Commit

Permalink
Create node_on_three_oses.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Apr 23, 2024
1 parent 6c15070 commit b702185
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/node_on_three_oses.yml
Original file line number Diff line number Diff line change
@@ -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) }}"

0 comments on commit b702185

Please sign in to comment.