Skip to content

Commit

Permalink
CI - exclude nodejs 12 and 14 on macos (unsupported versions)
Browse files Browse the repository at this point in the history
  • Loading branch information
liborm85 authored Jul 30, 2024
1 parent 1663642 commit 5abe603
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]

exclude:
- os: macos-latest
node-version: 12
- os: macos-latest
node-version: 14

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down

0 comments on commit 5abe603

Please sign in to comment.