We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5351693 + c9a5da7 commit a38e4e3Copy full SHA for a38e4e3
1 file changed
.github/workflows/main.yml
@@ -1,5 +1,9 @@
1
name: Test
2
-on: [push]
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - master
7
8
permissions:
9
contents: read
@@ -9,12 +13,28 @@ jobs:
13
runs-on: ${{ matrix.os }}
10
14
strategy:
11
15
matrix:
12
- os: [ubuntu-latest, macos-latest, windows-latest]
16
+ os:
17
+ - ubuntu-latest
18
+ - ubuntu-24.04
19
+ - ubuntu-22.04
20
+ - ubuntu-24.04-arm
21
+ - ubuntu-22.04-arm
22
+ - macos-latest
23
+ - macos-26
24
+ - macos-26-intel
25
+ - macos-15-intel
26
+ - macos-15
27
+ - macos-14-large
28
+ - macos-14
29
+ - windows-latest
30
+ - windows-2025
31
+ - windows-2022
32
+ - windows-11-arm
33
name: Install the cli
34
steps:
35
- name: Checkout
36
uses: actions/checkout@v6
- - uses: actions/setup-node@v4
37
+ - uses: actions/setup-node@v6
38
- name: Install CLI
39
uses: ./
40
id: install
0 commit comments