Skip to content

Commit

Permalink
updates to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Bero committed Aug 10, 2024
1 parent eb9e6f4 commit f5dc7d7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
meteor: [1.12.2, 2.7.3, 2.9.1]
meteor: [3.0.1]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Meteor
run: |
curl https://install.meteor.com | /bin/sh
- name: Setup Meteor
uses: meteorengineer/setup-meteor@v1
with:
meteor-release: ${{ matrix.meteor }}
- name: Setup tests
run: |
meteor create --release ${{ matrix.meteor }} --bare test
cd test
meteor npm i --save [email protected] [email protected] [email protected] chai
meteor npm i --save chai
- name: Test
working-directory: ./test
run: METEOR_PACKAGE_DIRS="../" TEST_BROWSER_DRIVER=chrome meteor test-packages --once --driver-package meteortesting:mocha ../
run: TEST_CLIENT=0 METEOR_PACKAGE_DIRS="../" meteor test-packages --once --driver-package meteortesting:mocha ../
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'herteby:denormalize',
version: '0.6.7',
version: '0.7.0-beta.0',
// Brief, one-line summary of the package.
summary: 'Simple denormalization for Meteor',
// URL to the Git repository containing the source code for this package.
Expand Down

0 comments on commit f5dc7d7

Please sign in to comment.