File tree Expand file tree Collapse file tree 2 files changed +37
-9
lines changed Expand file tree Collapse file tree 2 files changed +37
-9
lines changed Original file line number Diff line number Diff line change
1
+ # the test suite runs the tests (headless, server+client) for multiple Meteor releases
2
+ name : Test suite
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ meteorRelease :
15
+ - " --release 2.7"
16
+ - " --release 2.8.1"
17
+ - " --release 2.15"
18
+ # Latest version
19
+ steps :
20
+ - name : Checkout code
21
+ uses : actions/checkout@v4
22
+
23
+ - name : Install Node.js
24
+ uses : actions/setup-node@v4
25
+ with :
26
+ node-version : " 14.x"
27
+
28
+ - name : Install Dependencies
29
+ run : |
30
+ curl https://install.meteor.com | /bin/sh
31
+ npm i -g @zodern/mtest
32
+ - name : Run Tests
33
+ run : |
34
+ # Fix using old versions of Meteor
35
+ export NODE_TLS_REJECT_UNAUTHORIZED=0
36
+
37
+ mtest --package ./ --once ${{ matrix.meteorRelease }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments