-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bero
committed
Aug 10, 2024
1 parent
eb9e6f4
commit f5dc7d7
Showing
2 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 ../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters