Skip to content

Commit ef71ea6

Browse files
committed
Try to run tests with GitHub Actions
1 parent 998cd88 commit ef71ea6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-20.04
8+
strategy:
9+
matrix:
10+
meteor: [1.12.3, 2.3.1, 2.9.1, 2.12]
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Setup Meteor
16+
uses: meteorengineer/setup-meteor@v1
17+
with:
18+
meteor-release: ${{ matrix.meteor }}
19+
- name: Tests
20+
run: |
21+
meteor test-packages ./

0 commit comments

Comments
 (0)