File tree Expand file tree Collapse file tree 11 files changed +461
-668
lines changed
Expand file tree Collapse file tree 11 files changed +461
-668
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+
8+ concurrency :
9+ group : test-${{ github.ref_name }}
10+ cancel-in-progress : ${{ github.ref_name != 'main' }}
11+
12+ jobs :
13+ solidus_admin :
14+ uses : ./.github/workflows/test_solidus.yml
15+ with :
16+ lib_name : admin
17+ coverage : true
18+ secrets :
19+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
20+
21+ solidus_api :
22+ uses : ./.github/workflows/test_solidus.yml
23+ with :
24+ lib_name : api
25+ coverage : true
26+ secrets :
27+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
28+
29+ solidus_backend :
30+ uses : ./.github/workflows/test_solidus.yml
31+ with :
32+ lib_name : backend
33+ coverage : true
34+ secrets :
35+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
36+
37+ solidus_backend_js :
38+ name : solidus_backend JS
39+ runs-on : ubuntu-latest
40+ env :
41+ LIB_NAME : backend
42+ steps :
43+ - uses : actions/checkout@v4
44+ - name : Set up Ruby
45+ uses : ruby/setup-ruby@v1
46+ with :
47+ ruby-version : 3.4
48+ bundler-cache : true
49+ - name : Run teaspoon tests
50+ run : |
51+ cd backend
52+ bundle exec teaspoon --require=spec/teaspoon_env.rb
53+
54+ solidus_core :
55+ uses : ./.github/workflows/test_solidus.yml
56+ with :
57+ lib_name : core
58+ coverage : true
59+ secrets :
60+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
61+
62+ solidus_sample :
63+ uses : ./.github/workflows/test_solidus.yml
64+ with :
65+ lib_name : sample
66+ coverage : false
67+
68+ solidus_legacy_promotions :
69+ uses : ./.github/workflows/test_solidus.yml
70+ with :
71+ lib_name : legacy_promotions
72+ coverage : true
73+ secrets :
74+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
75+
76+ solidus_promotions :
77+ uses : ./.github/workflows/test_solidus.yml
78+ with :
79+ lib_name : promotions
80+ coverage : true
81+ secrets :
82+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments