File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -72,12 +72,33 @@ jobs:
72
72
- ember-lts-3.28
73
73
- ember-release
74
74
- ember-beta
75
- - ember-canary
76
75
- ember-classic
77
76
- ember-default-with-jquery
78
77
- embroider-safe
79
78
- embroider-optimized
80
79
- no-deprecations
80
+
81
+ steps :
82
+ - uses : actions/checkout@v2
83
+ - uses : actions/setup-node@v3
84
+ with :
85
+ node-version : 14.x
86
+ cache : npm
87
+ - run : npm i -g npm@8
88
+ - run : npm ci
89
+ - name : Run Tests
90
+ run : ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
91
+
92
+ allow-fail-try-scenarios :
93
+ name : ${{ matrix.try-scenario }} - Allowed to fail
94
+ runs-on : ubuntu-latest
95
+ needs : ' test'
96
+
97
+ strategy :
98
+ fail-fast : false
99
+ matrix :
100
+ try-scenario :
101
+ - ember-canary
81
102
- ember-release-no-deprecations
82
103
83
104
steps :
@@ -89,4 +110,11 @@ jobs:
89
110
- run : npm i -g npm@8
90
111
- run : npm ci
91
112
- name : Run Tests
113
+ id : tests
92
114
run : ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
115
+ continue-on-error : true
116
+ - uses : mainmatter/continue-on-error-comment@v1
117
+ with :
118
+ repo-token : ${{ secrets.GITHUB_TOKEN }}
119
+ outcome : ${{ steps.tests.outcome }}
120
+ test-id : ${{ matrix.try-scenario }}
You can’t perform that action at this time.
0 commit comments