Skip to content

Commit

Permalink
Update deps and expand test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Sep 23, 2024
1 parent 230a115 commit ef6a2c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
tests:
name: tests
runs-on: ubuntu-latest
strategy:
matrix:
meteor: [ '1.12.1', '2.13.3', '3.0.3' ]
# needs: [lintcode,lintstyle,lintdocs] # we could add prior jobs for linting, if desired
steps:
- name: checkout
Expand All @@ -17,7 +20,7 @@ jobs:
- name: Setup meteor
uses: meteorengineer/setup-meteor@v1
with:
meteor-release: '2.13.3'
meteor-release: ${{ matrix.meteor }}

- name: cache dependencies
uses: actions/cache@v1
Expand Down
8 changes: 4 additions & 4 deletions package/collection2/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Package.onUse(function (api) {
api.use('minimongo');
api.use('ejson');
api.use('ecmascript');
api.use('raix:eventemitter@1.0.0');
api.use('aldeed:simple-schema@1.13.1 || 2.0.0-rc.300.10');
api.use('raix:eventemitter@2.0.0');
api.use('aldeed:simple-schema@1.13.1 || 2.0.0');

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

Expand All @@ -36,7 +36,7 @@ Package.onUse(function (api) {
Package.onTest(function (api) {
api.versionsFrom(['1.12.1', '2.3', '3.0']);
api.use([
'meteortesting:mocha@3.1.0-rc.1',
'aldeed:collection2@4.0.2'
'meteortesting:mocha@2.1.0 || 3.2.0',
'aldeed:collection2'
]);
});

0 comments on commit ef6a2c0

Please sign in to comment.