Many link reactivity issue test #6
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
name: Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
meteor: [2.3.1, 2.6.1, 2.7.3, 2.8.1, 2.9.1, 2.12] | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 | |
- name: Test | |
working-directory: ./test | |
run: METEOR_PACKAGE_DIRS="../" TEST_BROWSER_DRIVER=chrome meteor test-packages --once --driver-package meteortesting:mocha ../ |