Skip to content

Commit 77e7976

Browse files
Merge pull request #456 from Meteor-Community-Packages/feature/update-deps
Update deps and expand test suite
2 parents faf4b14 + 38226fd commit 77e7976

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/testsuite.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@ jobs:
99
tests:
1010
name: tests
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
meteor: [ '2.13.3', '3.0.4' ]
1215
# needs: [lintcode,lintstyle,lintdocs] # we could add prior jobs for linting, if desired
1316
steps:
1417
- name: checkout
15-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1619

1720
- name: Setup meteor
1821
uses: meteorengineer/setup-meteor@v2
1922
with:
20-
meteor-release: '3.0.4'
23+
meteor-release: ${{ matrix.meteor }}
2124

2225
- name: cache dependencies
2326
uses: actions/cache@v4

package/collection2/package.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Package.onUse(function (api) {
1616
api.use('minimongo');
1717
api.use('ejson');
1818
api.use('ecmascript');
19-
api.use('raix:[email protected]');
20-
api.use('aldeed:[email protected] || 2.0.0-rc.300.10');
19+
api.use('raix:[email protected] || 2.0.0');
20+
api.use('aldeed:[email protected] || 2.0.0');
2121

2222
api.addFiles(['./collection2.js']);
2323

@@ -30,7 +30,7 @@ Package.onUse(function (api) {
3030
Package.onTest(function (api) {
3131
api.versionsFrom(['1.12.1', '2.3', '3.0']);
3232
api.use([
33-
'meteortesting:mocha@3.1.0-rc.1',
34-
'aldeed:collection2@4.0.2'
33+
'meteortesting:mocha@2.1.0 || 3.2.0',
34+
'aldeed:collection2'
3535
]);
3636
});

0 commit comments

Comments
 (0)