Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
Test zodern mtest
Browse files Browse the repository at this point in the history
  • Loading branch information
filipenevola committed Dec 7, 2023
1 parent 6247463 commit 1ad1cdc
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# the test suite runs the tests (headless, server+client) for multiple Meteor releases
name: Test suite
on:
push:
branches:
- meteor-3
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
meteorRelease:
- '--release 3.0-alpha.19'
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '12.x'

- name: Install Dependencies
run: |
curl https://install.meteor.com | /bin/sh
npm i -g @zodern/mtest
- name: Run Tests
run: |
mtest --package ./ --once ${{ matrix.meteorRelease }}

0 comments on commit 1ad1cdc

Please sign in to comment.