Skip to content

Commit

Permalink
Merge pull request #456 from Meteor-Community-Packages/feature/update…
Browse files Browse the repository at this point in the history
…-deps

Update deps and expand test suite
  • Loading branch information
StorytellerCZ authored Nov 12, 2024
2 parents faf4b14 + 38226fd commit 77e7976
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@ jobs:
tests:
name: tests
runs-on: ubuntu-latest
strategy:
matrix:
meteor: [ '2.13.3', '3.0.4' ]
# needs: [lintcode,lintstyle,lintdocs] # we could add prior jobs for linting, if desired
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup meteor
uses: meteorengineer/setup-meteor@v2
with:
meteor-release: '3.0.4'
meteor-release: ${{ matrix.meteor }}

- name: cache dependencies
uses: actions/cache@v4
Expand Down
8 changes: 4 additions & 4 deletions package/collection2/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,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@1.0.0 || 2.0.0');
api.use('aldeed:simple-schema@1.13.1 || 2.0.0');

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

Expand All @@ -30,7 +30,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 77e7976

Please sign in to comment.