Skip to content

Commit aa3067a

Browse files
committed
feat: Run tests on all available operating systems
1 parent 8723159 commit aa3067a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ name: Check Markdown and Examples
22
on: [push, pull_request]
33
jobs:
44
deploy:
5-
runs-on: ubuntu-latest
5+
strategy:
6+
fail-fast: false
7+
matrix:
8+
runner: [
9+
'macos-latest',
10+
'ubuntu-latest',
11+
'windows-latest',
12+
]
13+
runs-on: ${{ matrix.runner }}
614
steps:
715
- uses: actions/setup-node@v2
816
with:

0 commit comments

Comments
 (0)