Skip to content

Commit 4bad40e

Browse files
committed
Run e2e on all platforms
1 parent a88a722 commit 4bad40e

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/coder.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,12 @@ jobs:
232232

233233
test-js:
234234
name: "test/js"
235+
strategy:
236+
matrix:
237+
os:
238+
- ubuntu-latest
239+
- macos-latest
240+
- windows-2022
235241
runs-on: ubuntu-latest
236242
steps:
237243
- uses: actions/checkout@v2
@@ -285,8 +291,14 @@ jobs:
285291
run: go run scripts/datadog-cireport/main.go site/test-results/junit.xml
286292

287293
test-e2e:
288-
name: "test/e2e"
289-
runs-on: ubuntu-latest
294+
name: "test/e2e/${{ matrix.os }}"
295+
runs-on: ${{ matrix.os }}
296+
strategy:
297+
matrix:
298+
os:
299+
- ubuntu-latest
300+
- macos-latest
301+
- windows-2022
290302
steps:
291303
- uses: actions/checkout@v2
292304

0 commit comments

Comments
 (0)