Update to Meteor 3.0 #15
Workflow file for this run
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-latest | |
strategy: | |
matrix: | |
meteor: [3.0.1] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Meteor | |
run: | | |
curl https://install.meteor.com | /bin/sh | |
- name: Setup tests | |
run: | | |
meteor create --release ${{ matrix.meteor }} --bare test | |
cd test | |
meteor npm i --save chai | |
- name: Test | |
working-directory: ./test | |
run: TEST_CLIENT=0 METEOR_PACKAGE_DIRS="../" meteor test-packages --once --driver-package meteortesting:mocha ../ |