File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 8
8
cli-integration-test :
9
9
name : CLI Integration Tests
10
10
# Note: `prepare-release.yaml` sets this commit message
11
- if : ${{ contains(github.event.pull_request.title, 'release CLI') || github.event_name == 'workflow_dispatch' }}
12
- runs-on : ubuntu-latest
11
+ if : ${{ contains(github.event.pull_request.title, 'release CLI') || github.event_name == 'workflow_dispatch' || github.ref_name == 'main' }}
12
+
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ fail-fast : false
16
+ matrix :
17
+ os : [ubuntu-latest]
18
+ node-version : [18, 20, 22]
19
+ include :
20
+ - os : macos-latest
21
+ node_version : 20
22
+ - os : windows-latest
23
+ node_version : 20.13.1
24
+
13
25
steps :
14
26
- name : Checkout
15
27
uses : actions/checkout@v4
16
28
with :
17
29
fetch-depth : 0
18
30
19
31
- uses : ./.github/actions/setup-and-build
32
+ with :
33
+ node-version : ${{ matrix.node-version }}
20
34
21
35
- name : Update template's versions
22
36
working-directory : ./packages/cli
You can’t perform that action at this time.
0 commit comments