We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a88a722 commit 4bad40eCopy full SHA for 4bad40e
.github/workflows/coder.yaml
@@ -232,6 +232,12 @@ jobs:
232
233
test-js:
234
name: "test/js"
235
+ strategy:
236
+ matrix:
237
+ os:
238
+ - ubuntu-latest
239
+ - macos-latest
240
+ - windows-2022
241
runs-on: ubuntu-latest
242
steps:
243
- uses: actions/checkout@v2
@@ -285,8 +291,14 @@ jobs:
285
291
run: go run scripts/datadog-cireport/main.go site/test-results/junit.xml
286
292
287
293
test-e2e:
288
- name: "test/e2e"
289
- runs-on: ubuntu-latest
294
+ name: "test/e2e/${{ matrix.os }}"
295
+ runs-on: ${{ matrix.os }}
296
297
298
299
300
301
290
302
303
304
0 commit comments