Skip to content

Commit

Permalink
chore(ci): fix macos runner (#361)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <[email protected]>
  • Loading branch information
jkowalleck authored Apr 28, 2024
1 parent 8a59940 commit bea4ded
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# For details of what checks are run for PRs please refer below
# docs: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions

name: Node CI
name: Node CIf

on:
push:
Expand All @@ -26,7 +26,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
os:
- ubuntu-latest
- windows-latest
- macos-13 # macos-latest has issues with node14
node-version:
# action based on https://github.com/actions/node-versions/releases
# see also: https://nodejs.org/en/about/releases/
Expand Down Expand Up @@ -57,7 +60,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
os:
- ubuntu-latest
- windows-latest
- macos-13 # macos-latest has issues with node14
node-version:
# action based on https://github.com/actions/node-versions/releases
# see also: https://nodejs.org/en/about/releases/
Expand Down Expand Up @@ -86,15 +92,20 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
os:
- ubuntu-latest
- windows-latest
- macos-13 # macos-latest has issues with node14
node-version:
# action based on https://github.com/actions/node-versions/releases
# see also: https://nodejs.org/en/about/releases/
- "20" # Current
- "18" # Active LTS
- "16"
pnpm-version: [ "latest" ]
include:
- os: "ubuntu-latest"
node-version: "16"
pnpm-version: "latest-8" # see https://www.npmjs.com/package/pnpm/?activeTab=versions
- os: "ubuntu-latest"
node-version: "14"
pnpm-version: "latest-7" # see https://www.npmjs.com/package/pnpm/?activeTab=versions
Expand Down

0 comments on commit bea4ded

Please sign in to comment.