Update for 3.0-rc.0 #29
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: Test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
meteorRelease: | |
- '--release 2.9.1' | |
- '--release 3.0-beta.0' | |
# Latest recommended version | |
- '' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '14.x' | |
- name: Install Dependencies | |
run: | | |
curl https://install.meteor.com | /bin/sh | |
npm i -g @zodern/mtest | |
- name: Run Tests | |
run: | | |
# Retry tests since some of them are flaky | |
mtest --package ./ --once ${{ matrix.meteorRelease }} || mtest --package ./ --once ${{ matrix.meteorRelease }} |