Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Test
on: [push]
on:
pull_request:
push:
branches:
- master

permissions:
contents: read
Expand All @@ -9,12 +13,28 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os:
- ubuntu-latest
- ubuntu-24.04
- ubuntu-22.04
- ubuntu-24.04-arm
- ubuntu-22.04-arm
- macos-latest
- macos-26
- macos-26-intel
- macos-15-intel
- macos-15
- macos-14-large
- macos-14
- windows-latest
- windows-2025
- windows-2022
- windows-11-arm
name: Install the cli
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
- name: Install CLI
uses: ./
id: install
Expand Down
Loading