File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 RUNNING_IN_CI : ' true'
2323 NODE_ENV : test
2424jobs :
25+ validate-changesets :
26+ uses : " ./.github/workflows/validate_changesets.yml"
2527 validate :
2628 name : Validate CI setup
2729 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1+ name : Validate changesets
2+
3+ on :
4+ workflow_call :
5+
6+ jobs :
7+ validate-changesets :
8+ name : Validate changesets
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Checkout project
12+ uses : actions/checkout@v4
13+ - name : Checkout Mono
14+ uses : actions/checkout@v4
15+ with :
16+ repository : appsignal/mono
17+ path : tmp/mono
18+ - name : Install Ruby
19+ uses : ruby/setup-ruby@v1
20+ with :
21+ ruby-version : ' 3.3'
22+ - name : Validate changesets
23+ run : tmp/mono/bin/mono changeset validate
24+
Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ namespace :build_matrix do
6464 "NODE_ENV" => "test"
6565 } ,
6666 "jobs" => {
67+ "validate-changesets" => {
68+ "uses" => "./.github/workflows/validate_changesets.yml"
69+ } ,
6770 "validate" => {
6871 "name" => "Validate CI setup" ,
6972 "runs-on" => "ubuntu-latest" ,
You can’t perform that action at this time.
0 commit comments